@wordpress/icons 9.32.0 → 9.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/build/icon/index.js +8 -6
- package/build/icon/index.js.map +1 -1
- package/build/library/settings.js +3 -1
- package/build/library/settings.js.map +1 -1
- package/build/library/sides-all.js +1 -4
- package/build/library/sides-all.js.map +1 -1
- package/build/library/sides-bottom.js +4 -5
- package/build/library/sides-bottom.js.map +1 -1
- package/build/library/sides-horizontal.js +5 -7
- package/build/library/sides-horizontal.js.map +1 -1
- package/build/library/sides-left.js +3 -7
- package/build/library/sides-left.js.map +1 -1
- package/build/library/sides-right.js +3 -7
- package/build/library/sides-right.js.map +1 -1
- package/build/library/sides-top.js +3 -7
- package/build/library/sides-top.js.map +1 -1
- package/build/library/sides-vertical.js +5 -7
- package/build/library/sides-vertical.js.map +1 -1
- package/build-module/icon/index.js +9 -7
- package/build-module/icon/index.js.map +1 -1
- package/build-module/library/settings.js +3 -1
- package/build-module/library/settings.js.map +1 -1
- package/build-module/library/sides-all.js +1 -4
- package/build-module/library/sides-all.js.map +1 -1
- package/build-module/library/sides-bottom.js +4 -5
- package/build-module/library/sides-bottom.js.map +1 -1
- package/build-module/library/sides-horizontal.js +5 -7
- package/build-module/library/sides-horizontal.js.map +1 -1
- package/build-module/library/sides-left.js +3 -7
- package/build-module/library/sides-left.js.map +1 -1
- package/build-module/library/sides-right.js +3 -7
- package/build-module/library/sides-right.js.map +1 -1
- package/build-module/library/sides-top.js +3 -7
- package/build-module/library/sides-top.js.map +1 -1
- package/build-module/library/sides-vertical.js +5 -7
- package/build-module/library/sides-vertical.js.map +1 -1
- package/build-types/icon/index.d.ts +7 -12
- package/build-types/icon/index.d.ts.map +1 -1
- package/build-types/library/settings.d.ts.map +1 -1
- package/build-types/library/sides-all.d.ts.map +1 -1
- package/build-types/library/sides-horizontal.d.ts.map +1 -1
- package/build-types/library/sides-vertical.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/icon/index.js +8 -6
- package/src/library/settings.js +2 -1
- package/src/library/sides-all.js +1 -4
- package/src/library/sides-bottom.js +3 -3
- package/src/library/sides-horizontal.js +4 -6
- package/src/library/sides-left.js +3 -3
- package/src/library/sides-right.js +3 -3
- package/src/library/sides-top.js +3 -3
- package/src/library/sides-vertical.js +4 -6
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/build/icon/index.js
CHANGED
|
@@ -14,9 +14,10 @@ var _element = require("@wordpress/element");
|
|
|
14
14
|
/**
|
|
15
15
|
* Return an SVG icon.
|
|
16
16
|
*
|
|
17
|
-
* @param {IconProps}
|
|
18
|
-
*
|
|
19
|
-
*
|
|
17
|
+
* @param {IconProps} props icon is the SVG component to render
|
|
18
|
+
* size is a number specifiying the icon size in pixels
|
|
19
|
+
* Other props will be passed to wrapped SVG component
|
|
20
|
+
* @param {import('react').ForwardedRef<HTMLElement>} ref The forwarded ref to the SVG element.
|
|
20
21
|
*
|
|
21
22
|
* @return {JSX.Element} Icon component
|
|
22
23
|
*/
|
|
@@ -24,13 +25,14 @@ function Icon({
|
|
|
24
25
|
icon,
|
|
25
26
|
size = 24,
|
|
26
27
|
...props
|
|
27
|
-
}) {
|
|
28
|
+
}, ref) {
|
|
28
29
|
return (0, _element.cloneElement)(icon, {
|
|
29
30
|
width: size,
|
|
30
31
|
height: size,
|
|
31
|
-
...props
|
|
32
|
+
...props,
|
|
33
|
+
ref
|
|
32
34
|
});
|
|
33
35
|
}
|
|
34
|
-
var _default = Icon;
|
|
36
|
+
var _default = (0, _element.forwardRef)(Icon);
|
|
35
37
|
exports.default = _default;
|
|
36
38
|
//# sourceMappingURL=index.js.map
|
package/build/icon/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_element","require","Icon","icon","size","props","cloneElement","width","height","_default","exports","default"],"sources":["@wordpress/icons/src/icon/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { cloneElement } from '@wordpress/element';\n\n/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */\n\n/**\n * Return an SVG icon.\n *\n * @param {IconProps}
|
|
1
|
+
{"version":3,"names":["_element","require","Icon","icon","size","props","ref","cloneElement","width","height","_default","forwardRef","exports","default"],"sources":["@wordpress/icons/src/icon/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { cloneElement, forwardRef } from '@wordpress/element';\n\n/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */\n\n/**\n * Return an SVG icon.\n *\n * @param {IconProps} props icon is the SVG component to render\n * size is a number specifiying the icon size in pixels\n * Other props will be passed to wrapped SVG component\n * @param {import('react').ForwardedRef<HTMLElement>} ref The forwarded ref to the SVG element.\n *\n * @return {JSX.Element} Icon component\n */\nfunction Icon( { icon, size = 24, ...props }, ref ) {\n\treturn cloneElement( icon, {\n\t\twidth: size,\n\t\theight: size,\n\t\t...props,\n\t\tref,\n\t} );\n}\n\nexport default forwardRef( Icon );\n"],"mappings":";;;;;;AAGA,IAAAA,QAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,IAAIA,CAAE;EAAEC,IAAI;EAAEC,IAAI,GAAG,EAAE;EAAE,GAAGC;AAAM,CAAC,EAAEC,GAAG,EAAG;EACnD,OAAO,IAAAC,qBAAY,EAAEJ,IAAI,EAAE;IAC1BK,KAAK,EAAEJ,IAAI;IACXK,MAAM,EAAEL,IAAI;IACZ,GAAGC,KAAK;IACRC;EACD,CAAE,CAAC;AACJ;AAAC,IAAAI,QAAA,GAEc,IAAAC,mBAAU,EAAET,IAAK,CAAC;AAAAU,OAAA,CAAAC,OAAA,GAAAH,QAAA"}
|
|
@@ -14,7 +14,9 @@ const settings = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z"
|
|
18
|
+
}), (0, _element.createElement)(_primitives.Path, {
|
|
19
|
+
d: "m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z"
|
|
18
20
|
}));
|
|
19
21
|
var _default = settings;
|
|
20
22
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","settings","_element","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/settings.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst settings = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
|
1
|
+
{"version":3,"names":["_primitives","require","settings","_element","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/settings.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst settings = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z\" />\n\t\t<Path d=\"m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z\" />\n\t</SVG>\n);\n\nexport default settings;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,QAAQ,GACb,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAsL,CAAE,CAAC,EACjM,IAAAN,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAuJ,CAAE,CAC7J,CACL;AAAC,IAAAC,QAAA,GAEaR,QAAQ;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,10 +14,7 @@ const sidesAll = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
18
|
-
style: {
|
|
19
|
-
fill: '#1e1e1e'
|
|
20
|
-
}
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z"
|
|
21
18
|
}));
|
|
22
19
|
var _default = sidesAll;
|
|
23
20
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesAll","_element","createElement","SVG","xmlns","viewBox","Path","d","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesAll","_element","createElement","SVG","xmlns","viewBox","Path","d","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-all.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesAll = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\" />\n\t</SVG>\n);\n\nexport default sidesAll;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,QAAQ,GACb,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAwE,CAAE,CAC9E,CACL;AAAC,IAAAC,QAAA,GAEaR,QAAQ;AAAAS,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,15 +14,14 @@ const sidesBottom = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
19
|
+
opacity: 0.25
|
|
20
20
|
}
|
|
21
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
22
|
-
d: "
|
|
22
|
+
d: "m16.5 19.5h-9v-1.5h9z",
|
|
23
23
|
style: {
|
|
24
|
-
fill: '#1e1e1e'
|
|
25
|
-
opacity: 0.1
|
|
24
|
+
fill: '#1e1e1e'
|
|
26
25
|
}
|
|
27
26
|
}));
|
|
28
27
|
var _default = sidesBottom;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesBottom","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesBottom","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","fill","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-bottom.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesBottom = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m16.5 19.5h-9v-1.5h9z\" style={ { fill: '#1e1e1e' } } />\n\t</SVG>\n);\n\nexport default sidesBottom;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,WAAW,GAChB,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC,uBAAuB;EAACC,KAAK,EAAG;IAAEE,IAAI,EAAE;EAAU;AAAG,CAAE,CAC3D,CACL;AAAC,IAAAC,QAAA,GAEaX,WAAW;AAAAY,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,16 +14,14 @@ const sidesHorizontal = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
19
|
+
opacity: 0.25
|
|
20
20
|
}
|
|
21
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
22
|
-
d: "
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
opacity: 0.1
|
|
26
|
-
}
|
|
22
|
+
d: "m4.5 7.5v9h1.5v-9z"
|
|
23
|
+
}), (0, _element.createElement)(_primitives.Path, {
|
|
24
|
+
d: "m18 7.5v9h1.5v-9z"
|
|
27
25
|
}));
|
|
28
26
|
var _default = sidesHorizontal;
|
|
29
27
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesHorizontal","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesHorizontal","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-horizontal.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesHorizontal = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m4.5 7.5v9h1.5v-9z\" />\n\t\t<Path d=\"m18 7.5v9h1.5v-9z\" />\n\t</SVG>\n);\n\nexport default sidesHorizontal;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,eAAe,GACpB,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAoB,CAAE,CAAC,EAC/B,IAAAN,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAmB,CAAE,CACzB,CACL;AAAC,IAAAG,QAAA,GAEaV,eAAe;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,16 +14,12 @@ const sidesLeft = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
19
|
+
opacity: 0.25
|
|
20
20
|
}
|
|
21
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
22
|
-
d: "
|
|
23
|
-
style: {
|
|
24
|
-
fill: '#1e1e1e',
|
|
25
|
-
opacity: 0.1
|
|
26
|
-
}
|
|
22
|
+
d: "m4.5 16.5v-9h1.5v9z"
|
|
27
23
|
}));
|
|
28
24
|
var _default = sidesLeft;
|
|
29
25
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesLeft","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesLeft","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-left.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesLeft = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m4.5 16.5v-9h1.5v9z\" />\n\t</SVG>\n);\n\nexport default sidesLeft;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,SAAS,GACd,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAqB,CAAE,CAC3B,CACL;AAAC,IAAAG,QAAA,GAEaV,SAAS;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,16 +14,12 @@ const sidesRight = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
19
|
+
opacity: 0.25
|
|
20
20
|
}
|
|
21
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
22
|
-
d: "
|
|
23
|
-
style: {
|
|
24
|
-
fill: '#1e1e1e',
|
|
25
|
-
opacity: 0.1
|
|
26
|
-
}
|
|
22
|
+
d: "m18 16.5v-9h1.5v9z"
|
|
27
23
|
}));
|
|
28
24
|
var _default = sidesRight;
|
|
29
25
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesRight","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesRight","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-right.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesRight = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m18 16.5v-9h1.5v9z\" />\n\t</SVG>\n);\n\nexport default sidesRight;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,UAAU,GACf,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAoB,CAAE,CAC1B,CACL;AAAC,IAAAG,QAAA,GAEaV,UAAU;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,16 +14,12 @@ const sidesTop = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
20
|
-
opacity: 0.1
|
|
19
|
+
opacity: 0.25
|
|
21
20
|
}
|
|
22
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
23
|
-
d: "
|
|
24
|
-
style: {
|
|
25
|
-
fill: '#1e1e1e'
|
|
26
|
-
}
|
|
22
|
+
d: "m16.5 6h-9v-1.5h9z"
|
|
27
23
|
}));
|
|
28
24
|
var _default = sidesTop;
|
|
29
25
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesTop","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesTop","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-top.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesTop = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m16.5 6h-9v-1.5h9z\" />\n\t</SVG>\n);\n\nexport default sidesTop;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,QAAQ,GACb,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAoB,CAAE,CAC1B,CACL;AAAC,IAAAG,QAAA,GAEaV,QAAQ;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -14,16 +14,14 @@ const sidesVertical = (0, _element.createElement)(_primitives.SVG, {
|
|
|
14
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15
15
|
viewBox: "0 0 24 24"
|
|
16
16
|
}, (0, _element.createElement)(_primitives.Path, {
|
|
17
|
-
d: "
|
|
17
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
18
18
|
style: {
|
|
19
|
-
|
|
20
|
-
opacity: 0.1
|
|
19
|
+
opacity: 0.25
|
|
21
20
|
}
|
|
22
21
|
}), (0, _element.createElement)(_primitives.Path, {
|
|
23
|
-
d: "
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
22
|
+
d: "m7.5 6h9v-1.5h-9z"
|
|
23
|
+
}), (0, _element.createElement)(_primitives.Path, {
|
|
24
|
+
d: "m7.5 19.5h9v-1.5h-9z"
|
|
27
25
|
}));
|
|
28
26
|
var _default = sidesVertical;
|
|
29
27
|
exports.default = _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_primitives","require","sidesVertical","_element","createElement","SVG","xmlns","viewBox","Path","d","style","
|
|
1
|
+
{"version":3,"names":["_primitives","require","sidesVertical","_element","createElement","SVG","xmlns","viewBox","Path","d","style","opacity","_default","exports","default"],"sources":["@wordpress/icons/src/library/sides-vertical.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesVertical = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m7.5 6h9v-1.5h-9z\" />\n\t\t<Path d=\"m7.5 19.5h9v-1.5h-9z\" />\n\t</SVG>\n);\n\nexport default sidesVertical;\n"],"mappings":";;;;;;;AAGA,IAAAA,WAAA,GAAAC,OAAA;AAHA;AACA;AACA;;AAGA,MAAMC,aAAa,GAClB,IAAAC,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAK,GAAG;EAACC,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1D,IAAAJ,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EACJC,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACF,IAAAR,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAmB,CAAE,CAAC,EAC9B,IAAAN,QAAA,CAAAC,aAAA,EAACJ,WAAA,CAAAQ,IAAI;EAACC,CAAC,EAAC;AAAsB,CAAE,CAC5B,CACL;AAAC,IAAAG,QAAA,GAEaV,aAAa;AAAAW,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* WordPress dependencies
|
|
3
3
|
*/
|
|
4
|
-
import { cloneElement } from '@wordpress/element';
|
|
4
|
+
import { cloneElement, forwardRef } from '@wordpress/element';
|
|
5
5
|
|
|
6
6
|
/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Return an SVG icon.
|
|
10
10
|
*
|
|
11
|
-
* @param {IconProps}
|
|
12
|
-
*
|
|
13
|
-
*
|
|
11
|
+
* @param {IconProps} props icon is the SVG component to render
|
|
12
|
+
* size is a number specifiying the icon size in pixels
|
|
13
|
+
* Other props will be passed to wrapped SVG component
|
|
14
|
+
* @param {import('react').ForwardedRef<HTMLElement>} ref The forwarded ref to the SVG element.
|
|
14
15
|
*
|
|
15
16
|
* @return {JSX.Element} Icon component
|
|
16
17
|
*/
|
|
@@ -18,12 +19,13 @@ function Icon({
|
|
|
18
19
|
icon,
|
|
19
20
|
size = 24,
|
|
20
21
|
...props
|
|
21
|
-
}) {
|
|
22
|
+
}, ref) {
|
|
22
23
|
return cloneElement(icon, {
|
|
23
24
|
width: size,
|
|
24
25
|
height: size,
|
|
25
|
-
...props
|
|
26
|
+
...props,
|
|
27
|
+
ref
|
|
26
28
|
});
|
|
27
29
|
}
|
|
28
|
-
export default Icon;
|
|
30
|
+
export default forwardRef(Icon);
|
|
29
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["cloneElement","Icon","icon","size","props","width","height"],"sources":["@wordpress/icons/src/icon/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { cloneElement } from '@wordpress/element';\n\n/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */\n\n/**\n * Return an SVG icon.\n *\n * @param {IconProps}
|
|
1
|
+
{"version":3,"names":["cloneElement","forwardRef","Icon","icon","size","props","ref","width","height"],"sources":["@wordpress/icons/src/icon/index.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { cloneElement, forwardRef } from '@wordpress/element';\n\n/** @typedef {{icon: JSX.Element, size?: number} & import('@wordpress/primitives').SVGProps} IconProps */\n\n/**\n * Return an SVG icon.\n *\n * @param {IconProps} props icon is the SVG component to render\n * size is a number specifiying the icon size in pixels\n * Other props will be passed to wrapped SVG component\n * @param {import('react').ForwardedRef<HTMLElement>} ref The forwarded ref to the SVG element.\n *\n * @return {JSX.Element} Icon component\n */\nfunction Icon( { icon, size = 24, ...props }, ref ) {\n\treturn cloneElement( icon, {\n\t\twidth: size,\n\t\theight: size,\n\t\t...props,\n\t\tref,\n\t} );\n}\n\nexport default forwardRef( Icon );\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,YAAY,EAAEC,UAAU,QAAQ,oBAAoB;;AAE7D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASC,IAAIA,CAAE;EAAEC,IAAI;EAAEC,IAAI,GAAG,EAAE;EAAE,GAAGC;AAAM,CAAC,EAAEC,GAAG,EAAG;EACnD,OAAON,YAAY,CAAEG,IAAI,EAAE;IAC1BI,KAAK,EAAEH,IAAI;IACXI,MAAM,EAAEJ,IAAI;IACZ,GAAGC,KAAK;IACRC;EACD,CAAE,CAAC;AACJ;AAEA,eAAeL,UAAU,CAAEC,IAAK,CAAC"}
|
|
@@ -7,7 +7,9 @@ const settings = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z"
|
|
11
|
+
}), createElement(Path, {
|
|
12
|
+
d: "m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z"
|
|
11
13
|
}));
|
|
12
14
|
export default settings;
|
|
13
15
|
//# sourceMappingURL=settings.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","settings","createElement","xmlns","viewBox","d"],"sources":["@wordpress/icons/src/library/settings.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst settings = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"
|
|
1
|
+
{"version":3,"names":["SVG","Path","settings","createElement","xmlns","viewBox","d"],"sources":["@wordpress/icons/src/library/settings.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst settings = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m19 7.5h-7.628c-.3089-.87389-1.1423-1.5-2.122-1.5-.97966 0-1.81309.62611-2.12197 1.5h-2.12803v1.5h2.12803c.30888.87389 1.14231 1.5 2.12197 1.5.9797 0 1.8131-.62611 2.122-1.5h7.628z\" />\n\t\t<Path d=\"m19 15h-2.128c-.3089-.8739-1.1423-1.5-2.122-1.5s-1.8131.6261-2.122 1.5h-7.628v1.5h7.628c.3089.8739 1.1423 1.5 2.122 1.5s1.8131-.6261 2.122-1.5h2.128z\" />\n\t</SVG>\n);\n\nexport default settings;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,QAAQ,GACbC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAsL,CAAE,CAAC,EACjMH,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAuJ,CAAE,CAC7J,CACL;AAED,eAAeJ,QAAQ"}
|
|
@@ -7,10 +7,7 @@ const sidesAll = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
11
|
-
style: {
|
|
12
|
-
fill: '#1e1e1e'
|
|
13
|
-
}
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z"
|
|
14
11
|
}));
|
|
15
12
|
export default sidesAll;
|
|
16
13
|
//# sourceMappingURL=sides-all.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesAll","createElement","xmlns","viewBox","d"
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesAll","createElement","xmlns","viewBox","d"],"sources":["@wordpress/icons/src/library/sides-all.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesAll = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\" />\n\t</SVG>\n);\n\nexport default sidesAll;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,QAAQ,GACbC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAwE,CAAE,CAC9E,CACL;AAED,eAAeJ,QAAQ"}
|
|
@@ -7,15 +7,14 @@ const sidesBottom = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
12
|
+
opacity: 0.25
|
|
13
13
|
}
|
|
14
14
|
}), createElement(Path, {
|
|
15
|
-
d: "
|
|
15
|
+
d: "m16.5 19.5h-9v-1.5h9z",
|
|
16
16
|
style: {
|
|
17
|
-
fill: '#1e1e1e'
|
|
18
|
-
opacity: 0.1
|
|
17
|
+
fill: '#1e1e1e'
|
|
19
18
|
}
|
|
20
19
|
}));
|
|
21
20
|
export default sidesBottom;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesBottom","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesBottom","createElement","xmlns","viewBox","d","style","opacity","fill"],"sources":["@wordpress/icons/src/library/sides-bottom.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesBottom = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m16.5 19.5h-9v-1.5h9z\" style={ { fill: '#1e1e1e' } } />\n\t</SVG>\n);\n\nexport default sidesBottom;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,WAAW,GAChBC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC,uBAAuB;EAACC,KAAK,EAAG;IAAEE,IAAI,EAAE;EAAU;AAAG,CAAE,CAC3D,CACL;AAED,eAAeP,WAAW"}
|
|
@@ -7,16 +7,14 @@ const sidesHorizontal = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
12
|
+
opacity: 0.25
|
|
13
13
|
}
|
|
14
14
|
}), createElement(Path, {
|
|
15
|
-
d: "
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
opacity: 0.1
|
|
19
|
-
}
|
|
15
|
+
d: "m4.5 7.5v9h1.5v-9z"
|
|
16
|
+
}), createElement(Path, {
|
|
17
|
+
d: "m18 7.5v9h1.5v-9z"
|
|
20
18
|
}));
|
|
21
19
|
export default sidesHorizontal;
|
|
22
20
|
//# sourceMappingURL=sides-horizontal.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesHorizontal","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesHorizontal","createElement","xmlns","viewBox","d","style","opacity"],"sources":["@wordpress/icons/src/library/sides-horizontal.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesHorizontal = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m4.5 7.5v9h1.5v-9z\" />\n\t\t<Path d=\"m18 7.5v9h1.5v-9z\" />\n\t</SVG>\n);\n\nexport default sidesHorizontal;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,eAAe,GACpBC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAoB,CAAE,CAAC,EAC/BH,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAmB,CAAE,CACzB,CACL;AAED,eAAeJ,eAAe"}
|
|
@@ -7,16 +7,12 @@ const sidesLeft = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
12
|
+
opacity: 0.25
|
|
13
13
|
}
|
|
14
14
|
}), createElement(Path, {
|
|
15
|
-
d: "
|
|
16
|
-
style: {
|
|
17
|
-
fill: '#1e1e1e',
|
|
18
|
-
opacity: 0.1
|
|
19
|
-
}
|
|
15
|
+
d: "m4.5 16.5v-9h1.5v9z"
|
|
20
16
|
}));
|
|
21
17
|
export default sidesLeft;
|
|
22
18
|
//# sourceMappingURL=sides-left.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesLeft","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesLeft","createElement","xmlns","viewBox","d","style","opacity"],"sources":["@wordpress/icons/src/library/sides-left.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesLeft = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m4.5 16.5v-9h1.5v9z\" />\n\t</SVG>\n);\n\nexport default sidesLeft;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,SAAS,GACdC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAqB,CAAE,CAC3B,CACL;AAED,eAAeJ,SAAS"}
|
|
@@ -7,16 +7,12 @@ const sidesRight = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
12
|
+
opacity: 0.25
|
|
13
13
|
}
|
|
14
14
|
}), createElement(Path, {
|
|
15
|
-
d: "
|
|
16
|
-
style: {
|
|
17
|
-
fill: '#1e1e1e',
|
|
18
|
-
opacity: 0.1
|
|
19
|
-
}
|
|
15
|
+
d: "m18 16.5v-9h1.5v9z"
|
|
20
16
|
}));
|
|
21
17
|
export default sidesRight;
|
|
22
18
|
//# sourceMappingURL=sides-right.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesRight","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesRight","createElement","xmlns","viewBox","d","style","opacity"],"sources":["@wordpress/icons/src/library/sides-right.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesRight = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m18 16.5v-9h1.5v9z\" />\n\t</SVG>\n);\n\nexport default sidesRight;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,UAAU,GACfC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAoB,CAAE,CAC1B,CACL;AAED,eAAeJ,UAAU"}
|
|
@@ -7,16 +7,12 @@ const sidesTop = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
13
|
-
opacity: 0.1
|
|
12
|
+
opacity: 0.25
|
|
14
13
|
}
|
|
15
14
|
}), createElement(Path, {
|
|
16
|
-
d: "
|
|
17
|
-
style: {
|
|
18
|
-
fill: '#1e1e1e'
|
|
19
|
-
}
|
|
15
|
+
d: "m16.5 6h-9v-1.5h9z"
|
|
20
16
|
}));
|
|
21
17
|
export default sidesTop;
|
|
22
18
|
//# sourceMappingURL=sides-top.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesTop","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesTop","createElement","xmlns","viewBox","d","style","opacity"],"sources":["@wordpress/icons/src/library/sides-top.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesTop = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m16.5 6h-9v-1.5h9z\" />\n\t</SVG>\n);\n\nexport default sidesTop;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,QAAQ,GACbC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAoB,CAAE,CAC1B,CACL;AAED,eAAeJ,QAAQ"}
|
|
@@ -7,16 +7,14 @@ const sidesVertical = createElement(SVG, {
|
|
|
7
7
|
xmlns: "http://www.w3.org/2000/svg",
|
|
8
8
|
viewBox: "0 0 24 24"
|
|
9
9
|
}, createElement(Path, {
|
|
10
|
-
d: "
|
|
10
|
+
d: "m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z",
|
|
11
11
|
style: {
|
|
12
|
-
|
|
13
|
-
opacity: 0.1
|
|
12
|
+
opacity: 0.25
|
|
14
13
|
}
|
|
15
14
|
}), createElement(Path, {
|
|
16
|
-
d: "
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
15
|
+
d: "m7.5 6h9v-1.5h-9z"
|
|
16
|
+
}), createElement(Path, {
|
|
17
|
+
d: "m7.5 19.5h9v-1.5h-9z"
|
|
20
18
|
}));
|
|
21
19
|
export default sidesVertical;
|
|
22
20
|
//# sourceMappingURL=sides-vertical.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["SVG","Path","sidesVertical","createElement","xmlns","viewBox","d","style","
|
|
1
|
+
{"version":3,"names":["SVG","Path","sidesVertical","createElement","xmlns","viewBox","d","style","opacity"],"sources":["@wordpress/icons/src/library/sides-vertical.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst sidesVertical = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path\n\t\t\td=\"m7.5 6h9v-1.5h-9zm0 13.5h9v-1.5h-9zm-3-3h1.5v-9h-1.5zm13.5-9v9h1.5v-9z\"\n\t\t\tstyle={ { opacity: 0.25 } }\n\t\t/>\n\t\t<Path d=\"m7.5 6h9v-1.5h-9z\" />\n\t\t<Path d=\"m7.5 19.5h9v-1.5h-9z\" />\n\t</SVG>\n);\n\nexport default sidesVertical;\n"],"mappings":";AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAEjD,MAAMC,aAAa,GAClBC,aAAA,CAACH,GAAG;EAACI,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC;AAAW,GAC1DF,aAAA,CAACF,IAAI;EACJK,CAAC,EAAC,wEAAwE;EAC1EC,KAAK,EAAG;IAAEC,OAAO,EAAE;EAAK;AAAG,CAC3B,CAAC,EACFL,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAmB,CAAE,CAAC,EAC9BH,aAAA,CAACF,IAAI;EAACK,CAAC,EAAC;AAAsB,CAAE,CAC5B,CACL;AAED,eAAeJ,aAAa"}
|