@wordpress/icons 10.6.0 → 10.7.1-next.1f6eadc42.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 +2 -0
- package/build/index.js +21 -0
- package/build/index.js.map +1 -1
- package/build/library/square.js +26 -0
- package/build/library/square.js.map +1 -0
- package/build/library/thumbs-down.js +21 -0
- package/build/library/thumbs-down.js.map +1 -0
- package/build/library/thumbs-up.js +21 -0
- package/build/library/thumbs-up.js.map +1 -0
- package/build-module/index.js +3 -0
- package/build-module/index.js.map +1 -1
- package/build-module/library/square.js +19 -0
- package/build-module/library/square.js.map +1 -0
- package/build-module/library/thumbs-down.js +14 -0
- package/build-module/library/thumbs-down.js.map +1 -0
- package/build-module/library/thumbs-up.js +14 -0
- package/build-module/library/thumbs-up.js.map +1 -0
- package/build-types/index.d.ts +3 -0
- package/build-types/library/square.d.ts +3 -0
- package/build-types/library/square.d.ts.map +1 -0
- package/build-types/library/thumbs-down.d.ts +3 -0
- package/build-types/library/thumbs-down.d.ts.map +1 -0
- package/build-types/library/thumbs-up.d.ts +3 -0
- package/build-types/library/thumbs-up.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/index.js +3 -0
- package/src/library/square.js +18 -0
- package/src/library/thumbs-down.js +12 -0
- package/src/library/thumbs-up.js +12 -0
- package/tsconfig.tsbuildinfo +1 -1
@@ -0,0 +1,14 @@
|
|
1
|
+
/**
|
2
|
+
* WordPress dependencies
|
3
|
+
*/
|
4
|
+
import { SVG, Path } from '@wordpress/primitives';
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
6
|
+
const thumbsDown = /*#__PURE__*/_jsx(SVG, {
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
8
|
+
viewBox: "0 0 24 24",
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
10
|
+
d: "M19.8 4h-1.5l1 8h1.5l-1-8ZM17 5.8c-.1-1-1-1.8-2-1.8H6.8c-.9 0-1.7.6-1.9 1.4l-1.8 6C2.7 12.7 3.7 14 5 14h4.4l-.8 3.6c-.3 1.3.7 2.4 1.9 2.4h.2c.6 0 1.2-.3 1.6-.8l5-6.6c.3-.4.5-.9.4-1.5L17 5.7Zm-.9 5.9-5 6.6c0 .1-.2.2-.4.2h-.2c-.3 0-.6-.3-.5-.6l.8-3.6c.1-.4 0-.9-.3-1.3s-.7-.6-1.2-.6H4.9c-.3 0-.6-.3-.5-.6l1.8-6c0-.2.3-.4.5-.4h8.2c.3 0 .5.2.5.4l.7 5.4v.4Z"
|
11
|
+
})
|
12
|
+
});
|
13
|
+
export default thumbsDown;
|
14
|
+
//# sourceMappingURL=thumbs-down.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["SVG","Path","jsx","_jsx","thumbsDown","xmlns","viewBox","children","d"],"sources":["@wordpress/icons/src/library/thumbs-down.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst thumbsDown = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"M19.8 4h-1.5l1 8h1.5l-1-8ZM17 5.8c-.1-1-1-1.8-2-1.8H6.8c-.9 0-1.7.6-1.9 1.4l-1.8 6C2.7 12.7 3.7 14 5 14h4.4l-.8 3.6c-.3 1.3.7 2.4 1.9 2.4h.2c.6 0 1.2-.3 1.6-.8l5-6.6c.3-.4.5-.9.4-1.5L17 5.7Zm-.9 5.9-5 6.6c0 .1-.2.2-.4.2h-.2c-.3 0-.6-.3-.5-.6l.8-3.6c.1-.4 0-.9-.3-1.3s-.7-.6-1.2-.6H4.9c-.3 0-.6-.3-.5-.6l1.8-6c0-.2.3-.4.5-.4h8.2c.3 0 .5.2.5.4l.7 5.4v.4Z\" />\n\t</SVG>\n);\n\nexport default thumbsDown;\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAElD,MAAMC,UAAU,gBACfD,IAAA,CAACH,GAAG;EAACK,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC,WAAW;EAAAC,QAAA,eAC1DJ,IAAA,CAACF,IAAI;IAACO,CAAC,EAAC;EAAkW,CAAE;AAAC,CACzW,CACL;AAED,eAAeJ,UAAU","ignoreList":[]}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/**
|
2
|
+
* WordPress dependencies
|
3
|
+
*/
|
4
|
+
import { SVG, Path } from '@wordpress/primitives';
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
6
|
+
const thumbsUp = /*#__PURE__*/_jsx(SVG, {
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
8
|
+
viewBox: "0 0 24 24",
|
9
|
+
children: /*#__PURE__*/_jsx(Path, {
|
10
|
+
d: "m3 12 1 8h1.5l-1-8H3Zm15.8-2h-4.4l.8-3.6c.3-1.3-.7-2.4-1.9-2.4h-.2c-.6 0-1.2.3-1.6.8l-5 6.6c-.3.4-.4.8-.4 1.2v.2l.7 5.4v.2c.2.9 1 1.5 1.9 1.5h8.2c.9 0 1.7-.6 1.9-1.4l1.8-6c.4-1.3-.6-2.6-1.9-2.6Zm.5 2.1-1.8 6c0 .2-.3.4-.5.4H8.8c-.3 0-.5-.2-.5-.4l-.7-5.4v-.4l5-6.6c0-.1.2-.2.4-.2h.2c.3 0 .6.3.5.6l-.8 3.6c-.1.4 0 .9.3 1.3s.7.6 1.2.6h4.4c.3 0 .6.3.5.6Z"
|
11
|
+
})
|
12
|
+
});
|
13
|
+
export default thumbsUp;
|
14
|
+
//# sourceMappingURL=thumbs-up.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"names":["SVG","Path","jsx","_jsx","thumbsUp","xmlns","viewBox","children","d"],"sources":["@wordpress/icons/src/library/thumbs-up.js"],"sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst thumbsUp = (\n\t<SVG xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n\t\t<Path d=\"m3 12 1 8h1.5l-1-8H3Zm15.8-2h-4.4l.8-3.6c.3-1.3-.7-2.4-1.9-2.4h-.2c-.6 0-1.2.3-1.6.8l-5 6.6c-.3.4-.4.8-.4 1.2v.2l.7 5.4v.2c.2.9 1 1.5 1.9 1.5h8.2c.9 0 1.7-.6 1.9-1.4l1.8-6c.4-1.3-.6-2.6-1.9-2.6Zm.5 2.1-1.8 6c0 .2-.3.4-.5.4H8.8c-.3 0-.5-.2-.5-.4l-.7-5.4v-.4l5-6.6c0-.1.2-.2.4-.2h.2c.3 0 .6.3.5.6l-.8 3.6c-.1.4 0 .9.3 1.3s.7.6 1.2.6h4.4c.3 0 .6.3.5.6Z\" />\n\t</SVG>\n);\n\nexport default thumbsUp;\n"],"mappings":"AAAA;AACA;AACA;AACA,SAASA,GAAG,EAAEC,IAAI,QAAQ,uBAAuB;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAElD,MAAMC,QAAQ,gBACbD,IAAA,CAACH,GAAG;EAACK,KAAK,EAAC,4BAA4B;EAACC,OAAO,EAAC,WAAW;EAAAC,QAAA,eAC1DJ,IAAA,CAACF,IAAI;IAACO,CAAC,EAAC;EAA+V,CAAE;AAAC,CACtW,CACL;AAED,eAAeJ,QAAQ","ignoreList":[]}
|
package/build-types/index.d.ts
CHANGED
@@ -241,6 +241,7 @@ export { default as store } from "./library/store";
|
|
241
241
|
export { default as stretchFullWidth } from "./library/stretch-full-width";
|
242
242
|
export { default as styles } from "./library/styles";
|
243
243
|
export { default as shipping } from "./library/shipping";
|
244
|
+
export { default as square } from "./library/square";
|
244
245
|
export { default as stretchWide } from "./library/stretch-wide";
|
245
246
|
export { default as subscript } from "./library/subscript";
|
246
247
|
export { default as superscript } from "./library/superscript";
|
@@ -254,6 +255,8 @@ export { default as tableRowBefore } from "./library/table-row-before";
|
|
254
255
|
export { default as tableRowDelete } from "./library/table-row-delete";
|
255
256
|
export { default as table } from "./library/table";
|
256
257
|
export { default as tag } from "./library/tag";
|
258
|
+
export { default as thumbsDown } from "./library/thumbs-down";
|
259
|
+
export { default as thumbsUp } from "./library/thumbs-up";
|
257
260
|
export { default as symbolFilled } from "./library/symbol-filled";
|
258
261
|
export { default as termDescription } from "./library/term-description";
|
259
262
|
export { default as footer } from "./library/footer";
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"square.d.ts","sourceRoot":"","sources":["../../src/library/square.js"],"names":[],"mappings":";AAKA,kDAUE"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"thumbs-down.d.ts","sourceRoot":"","sources":["../../src/library/thumbs-down.js"],"names":[],"mappings":";AAKA,sDAIE"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"thumbs-up.d.ts","sourceRoot":"","sources":["../../src/library/thumbs-up.js"],"names":[],"mappings":";AAKA,oDAIE"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wordpress/icons",
|
3
|
-
"version": "10.
|
3
|
+
"version": "10.7.1-next.1f6eadc42.0",
|
4
4
|
"description": "WordPress Icons package, based on dashicon.",
|
5
5
|
"author": "The WordPress Contributors",
|
6
6
|
"license": "GPL-2.0-or-later",
|
@@ -30,11 +30,11 @@
|
|
30
30
|
"types": "build-types",
|
31
31
|
"dependencies": {
|
32
32
|
"@babel/runtime": "^7.16.0",
|
33
|
-
"@wordpress/element": "^6.
|
34
|
-
"@wordpress/primitives": "^4.
|
33
|
+
"@wordpress/element": "^6.7.1-next.1f6eadc42.0",
|
34
|
+
"@wordpress/primitives": "^4.7.1-next.1f6eadc42.0"
|
35
35
|
},
|
36
36
|
"publishConfig": {
|
37
37
|
"access": "public"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "960a22b909c9fdbc90e7435b7ba8947b9218837a"
|
40
40
|
}
|
package/src/index.js
CHANGED
@@ -242,6 +242,7 @@ export { default as store } from './library/store';
|
|
242
242
|
export { default as stretchFullWidth } from './library/stretch-full-width';
|
243
243
|
export { default as styles } from './library/styles';
|
244
244
|
export { default as shipping } from './library/shipping';
|
245
|
+
export { default as square } from './library/square';
|
245
246
|
export { default as stretchWide } from './library/stretch-wide';
|
246
247
|
export { default as subscript } from './library/subscript';
|
247
248
|
export { default as superscript } from './library/superscript';
|
@@ -255,6 +256,8 @@ export { default as tableRowBefore } from './library/table-row-before';
|
|
255
256
|
export { default as tableRowDelete } from './library/table-row-delete';
|
256
257
|
export { default as table } from './library/table';
|
257
258
|
export { default as tag } from './library/tag';
|
259
|
+
export { default as thumbsDown } from './library/thumbs-down';
|
260
|
+
export { default as thumbsUp } from './library/thumbs-up';
|
258
261
|
export { default as symbolFilled } from './library/symbol-filled';
|
259
262
|
export { default as termDescription } from './library/term-description';
|
260
263
|
export { default as footer } from './library/footer';
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/**
|
2
|
+
* WordPress dependencies
|
3
|
+
*/
|
4
|
+
import { SVG, Path } from '@wordpress/primitives';
|
5
|
+
|
6
|
+
const square = (
|
7
|
+
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
|
8
|
+
<Path
|
9
|
+
fill="none"
|
10
|
+
d="M5.75 12.75V18.25H11.25M12.75 5.75H18.25V11.25"
|
11
|
+
stroke="currentColor"
|
12
|
+
strokeWidth="1.5"
|
13
|
+
strokeLinecap="square"
|
14
|
+
/>
|
15
|
+
</SVG>
|
16
|
+
);
|
17
|
+
|
18
|
+
export default square;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* WordPress dependencies
|
3
|
+
*/
|
4
|
+
import { SVG, Path } from '@wordpress/primitives';
|
5
|
+
|
6
|
+
const thumbsDown = (
|
7
|
+
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
8
|
+
<Path d="M19.8 4h-1.5l1 8h1.5l-1-8ZM17 5.8c-.1-1-1-1.8-2-1.8H6.8c-.9 0-1.7.6-1.9 1.4l-1.8 6C2.7 12.7 3.7 14 5 14h4.4l-.8 3.6c-.3 1.3.7 2.4 1.9 2.4h.2c.6 0 1.2-.3 1.6-.8l5-6.6c.3-.4.5-.9.4-1.5L17 5.7Zm-.9 5.9-5 6.6c0 .1-.2.2-.4.2h-.2c-.3 0-.6-.3-.5-.6l.8-3.6c.1-.4 0-.9-.3-1.3s-.7-.6-1.2-.6H4.9c-.3 0-.6-.3-.5-.6l1.8-6c0-.2.3-.4.5-.4h8.2c.3 0 .5.2.5.4l.7 5.4v.4Z" />
|
9
|
+
</SVG>
|
10
|
+
);
|
11
|
+
|
12
|
+
export default thumbsDown;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* WordPress dependencies
|
3
|
+
*/
|
4
|
+
import { SVG, Path } from '@wordpress/primitives';
|
5
|
+
|
6
|
+
const thumbsUp = (
|
7
|
+
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
8
|
+
<Path d="m3 12 1 8h1.5l-1-8H3Zm15.8-2h-4.4l.8-3.6c.3-1.3-.7-2.4-1.9-2.4h-.2c-.6 0-1.2.3-1.6.8l-5 6.6c-.3.4-.4.8-.4 1.2v.2l.7 5.4v.2c.2.9 1 1.5 1.9 1.5h8.2c.9 0 1.7-.6 1.9-1.4l1.8-6c.4-1.3-.6-2.6-1.9-2.6Zm.5 2.1-1.8 6c0 .2-.3.4-.5.4H8.8c-.3 0-.5-.2-.5-.4l-.7-5.4v-.4l5-6.6c0-.1.2-.2.4-.2h.2c.3 0 .6.3.5.6l-.8 3.6c-.1.4 0 .9.3 1.3s.7.6 1.2.6h4.4c.3 0 .6.3.5.6Z" />
|
9
|
+
</SVG>
|
10
|
+
);
|
11
|
+
|
12
|
+
export default thumbsUp;
|