@sunzi/icon 1.1.30 → 1.1.31

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.
Files changed (25) hide show
  1. package/es/customeow/default/icon-arrows-right-left-sort-outline.js +1 -0
  2. package/es/customeow/default/icon-document-text-solid.js +1 -1
  3. package/es/customeow/default/icon-production-solid.js +1 -1
  4. package/es/customeow/default/icon-speaker-wave-solid.js +1 -0
  5. package/es/customeow/default/icon-speaker-x-mark-solid.js +1 -0
  6. package/es/customeow/default/icon-tool-video-camera.js +1 -0
  7. package/es/customeow/default/icon-video-photo-plus-solid.js +1 -0
  8. package/es/customeow/index.js +1 -1
  9. package/manifest.json +453 -36
  10. package/package.json +1 -1
  11. package/src/customeow/default/icon-arrows-right-left-sort-outline.tsx +37 -0
  12. package/src/customeow/default/icon-document-text-solid.tsx +1 -5
  13. package/src/customeow/default/icon-production-solid.tsx +1 -3
  14. package/src/customeow/default/icon-speaker-wave-solid.tsx +38 -0
  15. package/src/customeow/default/icon-speaker-x-mark-solid.tsx +34 -0
  16. package/src/customeow/default/icon-tool-video-camera.tsx +36 -0
  17. package/src/customeow/default/icon-video-photo-plus-solid.tsx +40 -0
  18. package/src/customeow/index.json +5 -0
  19. package/src/customeow/index.tsx +5 -0
  20. package/types/customeow/default/icon-arrows-right-left-sort-outline.d.ts +3 -0
  21. package/types/customeow/default/icon-speaker-wave-solid.d.ts +3 -0
  22. package/types/customeow/default/icon-speaker-x-mark-solid.d.ts +3 -0
  23. package/types/customeow/default/icon-tool-video-camera.d.ts +3 -0
  24. package/types/customeow/default/icon-video-photo-plus-solid.d.ts +3 -0
  25. package/types/customeow/index.d.ts +5 -0
@@ -21,10 +21,8 @@ export const IconProductionSolid = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M2 3.19995C2 2.64767 2.44772 2.19995 3 2.19995H9C9.55228 2.19995 10 2.64767 10 3.19995V3.74995H14.7507C16.6839 3.74995 18.25 5.31719 18.25 7.24995C18.25 9.18295 16.683 10.75 14.75 10.75H12.8855C12.567 11.7642 11.6194 12.5 10.5 12.5C9.38059 12.5 8.43302 11.7642 8.11445 10.75H5.75C4.64543 10.75 3.75 11.6454 3.75 12.75C3.75 13.8545 4.64543 14.75 5.75 14.75H10V14.2C10 13.6477 10.4477 13.4 11 13.2H17C17.5523 13.2 18 13.8477 18 14.2V16.8C18 17.3522 17.5523 17.8 17 17.8H11C10.4477 17.8 10 17.3522 10 16.8V16.25H5.75C3.817 16.25 2.25 14.6829 2.25 12.75C2.25 10.817 3.817 9.24995 5.75 9.24995H8.11445C8.43302 8.23567 9.38059 7.49995 10.5 7.49995C11.6194 7.49995 12.567 8.23567 12.8855 9.24995H14.75C15.8546 9.24995 16.75 8.35452 16.75 7.24995C16.75 6.14514 15.855 5.24995 14.7507 5.24995H10V5.79995C10 6.35224 9.55228 6.79995 9 6.79995H3C2.44772 6.79995 2 6.35224 2 5.79995V3.19995ZM3.5 5.29995V3.69995H8.5V5.29995H3.5ZM11.5 16.3V14.7H16.5V16.3H11.5ZM11.5 9.99995C11.5 10.5522 11.0523 11 10.5 11C9.94772 11 9.5 10.5522 9.5 9.99995C9.5 9.44767 9.94772 8.99995 10.5 8.99995C11.0523 8.99995 11.5 9.44767 11.5 9.99995Z"
24
+ d="M3 15.5C3 16.3284 3.67157 17 4.5 17L15.5 17C16.3284 17 17 16.3284 17 15.5V4.5C17 3.67157 16.3284 3 15.5 3H11.5V9H8.5V3H4.5C3.67157 3 3 3.67157 3 4.5V15.5Z"
25
25
  fill={color}
26
- fillRule="evenodd"
27
- clipRule="evenodd"
28
26
  />
29
27
  </svg>
30
28
  );
@@ -0,0 +1,38 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconSpeakerWaveSolid = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = "currentColor", ...props }, forwardedRef) => {
6
+ const { className } = props;
7
+ props = {
8
+ ...props,
9
+ width: `${props.width || props.size || 20}`,
10
+ height: `${props.height || props.size || 20}`,
11
+ className: `${
12
+ className ? className + " " : ""
13
+ }customeow-icon customeow-icon-icon-speaker-wave-solid`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 20 20"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M10 3.75002C10 3.4508 9.82215 3.18021 9.54747 3.06153 9.2728 2.94286 8.95387 2.99879 8.73598 3.20387L4.70257 7.00002H3.16724C2.85725 7.00002 2.5792 7.19074 2.46756 7.47993 2.16534 8.26287 2 9.11302 2 10 2 10.887 2.16534 11.7372 2.46756 12.5201 2.5792 12.8093 2.85725 13 3.16724 13H4.70257L8.73598 16.7962C8.95387 17.0012 9.2728 17.0572 9.54747 16.9385 9.82215 16.8198 10 16.5492 10 16.25V3.75002ZM15.9498 5.05029C15.6569 4.7574 15.182 4.7574 14.8891 5.05029 14.5962 5.34318 14.5962 5.81806 14.8891 6.11095 17.037 8.25883 17.037 11.7412 14.8891 13.8891 14.5962 14.182 14.5962 14.6569 14.8891 14.9498 15.182 15.2427 15.6569 15.2427 15.9498 14.9498 18.6834 12.2161 18.6834 7.78396 15.9498 5.05029Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M13.8287 7.1716C13.5358 6.8787 13.0609 6.8787 12.768 7.1716C12.4751 7.46449 12.4751 7.93936 12.768 8.23226C13.7443 9.20857 13.7443 10.7915 12.768 11.7678C12.4751 12.0607 12.4751 12.5356 12.768 12.8285C13.0609 13.1213 13.5358 13.1213 13.8287 12.8285C15.3908 11.2664 15.3908 8.73369 13.8287 7.1716Z"
29
+ fill={color}
30
+ />
31
+ </svg>
32
+ );
33
+ }
34
+ );
35
+
36
+ IconSpeakerWaveSolid.displayName = "IconSpeakerWaveSolid";
37
+
38
+ export default IconSpeakerWaveSolid;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconSpeakerXMarkSolid = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = "currentColor", ...props }, forwardedRef) => {
6
+ const { className } = props;
7
+ props = {
8
+ ...props,
9
+ width: `${props.width || props.size || 20}`,
10
+ height: `${props.height || props.size || 20}`,
11
+ className: `${
12
+ className ? className + " " : ""
13
+ }customeow-icon customeow-icon-icon-speaker-x-mark-solid`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 20 20"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M9.54747 3.06153C9.82215 3.18021 10 3.4508 10 3.75002V16.25C10 16.5492 9.82215 16.8198 9.54747 16.9385 9.2728 17.0572 8.95387 17.0012 8.73598 16.7962L4.70257 13H3.16724C2.85725 13 2.5792 12.8093 2.46756 12.5201 2.16534 11.7372 2 10.887 2 10 2 9.11302 2.16534 8.26287 2.46756 7.47993 2.5792 7.19074 2.85725 7.00002 3.16724 7.00002H4.70257L8.73598 3.20387C8.95387 2.99879 9.2728 2.94286 9.54747 3.06153ZM13.2803 7.2197C12.9874 6.92681 12.5126 6.92681 12.2197 7.2197 11.9268 7.51259 11.9268 7.98747 12.2197 8.28036L13.9393 10 12.2197 11.7197C11.9268 12.0126 11.9268 12.4875 12.2197 12.7804 12.5126 13.0733 12.9874 13.0733 13.2803 12.7804L15 11.0607 16.7197 12.7804C17.0126 13.0733 17.4874 13.0733 17.7803 12.7804 18.0732 12.4875 18.0732 12.0126 17.7803 11.7197L16.0607 10 17.7803 8.28036C18.0732 7.98747 18.0732 7.51259 17.7803 7.2197 17.4874 6.92681 17.0126 6.92681 16.7197 7.2197L15 8.93937 13.2803 7.2197Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconSpeakerXMarkSolid.displayName = "IconSpeakerXMarkSolid";
33
+
34
+ export default IconSpeakerXMarkSolid;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconToolVideoCamera = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = "currentColor", ...props }, forwardedRef) => {
6
+ const { className } = props;
7
+ props = {
8
+ ...props,
9
+ width: `${props.width || props.size || 20}`,
10
+ height: `${props.height || props.size || 20}`,
11
+ className: `${
12
+ className ? className + " " : ""
13
+ }customeow-icon customeow-icon-icon-tool-video-camera`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 24 24"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M1.5 7.5C1.5 5.84315 2.84315 4.5 4.5 4.5H13.5C15.1569 4.5 16.5 5.84315 16.5 7.5V8.68934L19.9393 5.25C20.8843 4.30505 22.5 4.97431 22.5 6.31066V17.6893C22.5 19.0257 20.8843 19.6949 19.9393 18.75L16.5 15.3107V16.5C16.5 18.1569 15.1569 19.5 13.5 19.5H4.5C2.84315 19.5 1.5 18.1569 1.5 16.5V7.5ZM16.5 13.1893L21 17.6893V6.31066L16.5 10.8107V13.1893ZM4.5 6C3.67157 6 3 6.67157 3 7.5V16.5C3 17.3284 3.67157 18 4.5 18H13.5C14.3284 18 15 17.3284 15 16.5V7.5C15 6.67157 14.3284 6 13.5 6H4.5Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconToolVideoCamera.displayName = "IconToolVideoCamera";
35
+
36
+ export default IconToolVideoCamera;
@@ -0,0 +1,40 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconVideoPhotoPlusSolid = forwardRef<SVGSVGElement, IconProps>(
5
+ ({ color = "currentColor", ...props }, forwardedRef) => {
6
+ const { className } = props;
7
+ props = {
8
+ ...props,
9
+ width: `${props.width || props.size || 20}`,
10
+ height: `${props.height || props.size || 20}`,
11
+ className: `${
12
+ className ? className + " " : ""
13
+ }customeow-icon customeow-icon-icon-video-photo-plus-solid`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 20 20"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M2.75 3C1.50736 3 0.5 4.00736 0.5 5.25V14.75C0.5 15.9926 1.50736 17 2.75 17H13.75C12.5074 17 11.5 15.9926 11.5 14.75C11.5 13.5074 12.5074 12.5 13.75 12.5H14V12.25C14 11.0074 15.0074 10 16.25 10C17.4877 10 18.492 10.9994 18.5 12.2352V5.25C18.5 4.00736 17.4926 3 16.25 3H2.75ZM8.17016 6.61056C7.69812 6.31244 7.08325 6.65227 7.08325 7.21128V12.7887C7.08325 13.3477 7.69812 13.6876 8.17016 13.3894L12.5858 10.6007C13.0269 10.3221 13.0269 9.67786 12.5858 9.39928L8.17016 6.61056Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M17.0001 12.25C17.0001 11.8358 16.6643 11.5 16.2501 11.5C15.8358 11.5 15.5001 11.8358 15.5001 12.25V14H13.75C13.3358 14 13 14.3358 13 14.75C13 15.1642 13.3358 15.5 13.75 15.5H15.5001V17.25C15.5001 17.6642 15.8358 18 16.2501 18C16.6643 18 17.0001 17.6642 17.0001 17.25L17.0001 15.5H18.75C19.1642 15.5 19.5 15.1642 19.5 14.75C19.5 14.3358 19.1642 14 18.75 14H17.0001V12.25Z"
31
+ fill={color}
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ );
37
+
38
+ IconVideoPhotoPlusSolid.displayName = "IconVideoPhotoPlusSolid";
39
+
40
+ export default IconVideoPhotoPlusSolid;
@@ -30,6 +30,7 @@
30
30
  { "componentName": "IconToolTextToImagePreview" },
31
31
  { "componentName": "IconToolProductPreview" },
32
32
  { "componentName": "IconTool2DPreview" },
33
+ { "componentName": "IconToolVideoCamera" },
33
34
  { "componentName": "IconPlayPreviewCircleOutline" },
34
35
  { "componentName": "IconVideoPlayCircleOutline" },
35
36
  { "componentName": "IconDragOutline" },
@@ -103,6 +104,7 @@
103
104
  { "componentName": "IconListSquareOutline" },
104
105
  { "componentName": "IconListCircleOutline" },
105
106
  { "componentName": "IconArrowsSortOutline" },
107
+ { "componentName": "IconArrowsRightLeftSortOutline" },
106
108
  { "componentName": "IconTableExportPhotosOutline" },
107
109
  { "componentName": "IconKeyboardOutline" },
108
110
  { "componentName": "IconRotateLeft90Outline" },
@@ -316,6 +318,7 @@
316
318
  { "componentName": "IconPublicPaperAirplaneSolid" },
317
319
  { "componentName": "IconSpeakerSolid" },
318
320
  { "componentName": "IconPlaySolid" },
321
+ { "componentName": "IconVideoPhotoPlusSolid" },
319
322
  { "componentName": "IconPenBicolorSolid" },
320
323
  { "componentName": "IconPenMinusSolid" },
321
324
  { "componentName": "IconPenAddSolid" },
@@ -470,6 +473,8 @@
470
473
  { "componentName": "IconSquaresSolid" },
471
474
  { "componentName": "IconTagPriceSolid" },
472
475
  { "componentName": "IconTagPriceCheckSolid" },
476
+ { "componentName": "IconSpeakerWaveSolid" },
477
+ { "componentName": "IconSpeakerXMarkSolid" },
473
478
  { "componentName": "IconSystemTooOld" },
474
479
  { "componentName": "IconLoadFailure" },
475
480
  { "componentName": "IconNetworkConnectionTimeout" },
@@ -28,6 +28,7 @@ export { default as IconToolEmbroideryTextPreview } from "./default/icon-tool-em
28
28
  export { default as IconToolTextToImagePreview } from "./default/icon-tool-text-to-image-preview";
29
29
  export { default as IconToolProductPreview } from "./default/icon-tool-product-preview";
30
30
  export { default as IconTool2DPreview } from "./default/icon-tool-2-d-preview";
31
+ export { default as IconToolVideoCamera } from "./default/icon-tool-video-camera";
31
32
  export { default as IconPlayPreviewCircleOutline } from "./default/icon-play-preview-circle-outline";
32
33
  export { default as IconVideoPlayCircleOutline } from "./default/icon-video-play-circle-outline";
33
34
  export { default as IconDragOutline } from "./default/icon-drag-outline";
@@ -101,6 +102,7 @@ export { default as IconPlusCircleOutline } from "./default/icon-plus-circle-out
101
102
  export { default as IconListSquareOutline } from "./default/icon-list-square-outline";
102
103
  export { default as IconListCircleOutline } from "./default/icon-list-circle-outline";
103
104
  export { default as IconArrowsSortOutline } from "./default/icon-arrows-sort-outline";
105
+ export { default as IconArrowsRightLeftSortOutline } from "./default/icon-arrows-right-left-sort-outline";
104
106
  export { default as IconTableExportPhotosOutline } from "./default/icon-table-export-photos-outline";
105
107
  export { default as IconKeyboardOutline } from "./default/icon-keyboard-outline";
106
108
  export { default as IconRotateLeft90Outline } from "./default/icon-rotate-left-90-outline";
@@ -314,6 +316,7 @@ export { default as IconEmptySolid } from "./default/icon-empty-solid";
314
316
  export { default as IconPublicPaperAirplaneSolid } from "./default/icon-public-paper-airplane-solid";
315
317
  export { default as IconSpeakerSolid } from "./default/icon-speaker-solid";
316
318
  export { default as IconPlaySolid } from "./default/icon-play-solid";
319
+ export { default as IconVideoPhotoPlusSolid } from "./default/icon-video-photo-plus-solid";
317
320
  export { default as IconPenBicolorSolid } from "./default/icon-pen-bicolor-solid";
318
321
  export { default as IconPenMinusSolid } from "./default/icon-pen-minus-solid";
319
322
  export { default as IconPenAddSolid } from "./default/icon-pen-add-solid";
@@ -468,6 +471,8 @@ export { default as IconHouseSolid } from "./default/icon-house-solid";
468
471
  export { default as IconSquaresSolid } from "./default/icon-squares-solid";
469
472
  export { default as IconTagPriceSolid } from "./default/icon-tag-price-solid";
470
473
  export { default as IconTagPriceCheckSolid } from "./default/icon-tag-price-check-solid";
474
+ export { default as IconSpeakerWaveSolid } from "./default/icon-speaker-wave-solid";
475
+ export { default as IconSpeakerXMarkSolid } from "./default/icon-speaker-x-mark-solid";
471
476
  export { default as IconSystemTooOld } from "./default/icon-system-too-old";
472
477
  export { default as IconLoadFailure } from "./default/icon-load-failure";
473
478
  export { default as IconNetworkConnectionTimeout } from "./default/icon-network-connection-timeout";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconArrowsRightLeftSortOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconArrowsRightLeftSortOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconSpeakerWaveSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconSpeakerWaveSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconSpeakerXMarkSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconSpeakerXMarkSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconToolVideoCamera: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconToolVideoCamera;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from "../../types";
2
+ export declare const IconVideoPhotoPlusSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconVideoPhotoPlusSolid;
@@ -28,6 +28,7 @@ export { default as IconToolEmbroideryTextPreview } from "./default/icon-tool-em
28
28
  export { default as IconToolTextToImagePreview } from "./default/icon-tool-text-to-image-preview";
29
29
  export { default as IconToolProductPreview } from "./default/icon-tool-product-preview";
30
30
  export { default as IconTool2DPreview } from "./default/icon-tool-2-d-preview";
31
+ export { default as IconToolVideoCamera } from "./default/icon-tool-video-camera";
31
32
  export { default as IconPlayPreviewCircleOutline } from "./default/icon-play-preview-circle-outline";
32
33
  export { default as IconVideoPlayCircleOutline } from "./default/icon-video-play-circle-outline";
33
34
  export { default as IconDragOutline } from "./default/icon-drag-outline";
@@ -101,6 +102,7 @@ export { default as IconPlusCircleOutline } from "./default/icon-plus-circle-out
101
102
  export { default as IconListSquareOutline } from "./default/icon-list-square-outline";
102
103
  export { default as IconListCircleOutline } from "./default/icon-list-circle-outline";
103
104
  export { default as IconArrowsSortOutline } from "./default/icon-arrows-sort-outline";
105
+ export { default as IconArrowsRightLeftSortOutline } from "./default/icon-arrows-right-left-sort-outline";
104
106
  export { default as IconTableExportPhotosOutline } from "./default/icon-table-export-photos-outline";
105
107
  export { default as IconKeyboardOutline } from "./default/icon-keyboard-outline";
106
108
  export { default as IconRotateLeft90Outline } from "./default/icon-rotate-left-90-outline";
@@ -314,6 +316,7 @@ export { default as IconEmptySolid } from "./default/icon-empty-solid";
314
316
  export { default as IconPublicPaperAirplaneSolid } from "./default/icon-public-paper-airplane-solid";
315
317
  export { default as IconSpeakerSolid } from "./default/icon-speaker-solid";
316
318
  export { default as IconPlaySolid } from "./default/icon-play-solid";
319
+ export { default as IconVideoPhotoPlusSolid } from "./default/icon-video-photo-plus-solid";
317
320
  export { default as IconPenBicolorSolid } from "./default/icon-pen-bicolor-solid";
318
321
  export { default as IconPenMinusSolid } from "./default/icon-pen-minus-solid";
319
322
  export { default as IconPenAddSolid } from "./default/icon-pen-add-solid";
@@ -468,6 +471,8 @@ export { default as IconHouseSolid } from "./default/icon-house-solid";
468
471
  export { default as IconSquaresSolid } from "./default/icon-squares-solid";
469
472
  export { default as IconTagPriceSolid } from "./default/icon-tag-price-solid";
470
473
  export { default as IconTagPriceCheckSolid } from "./default/icon-tag-price-check-solid";
474
+ export { default as IconSpeakerWaveSolid } from "./default/icon-speaker-wave-solid";
475
+ export { default as IconSpeakerXMarkSolid } from "./default/icon-speaker-x-mark-solid";
471
476
  export { default as IconSystemTooOld } from "./default/icon-system-too-old";
472
477
  export { default as IconLoadFailure } from "./default/icon-load-failure";
473
478
  export { default as IconNetworkConnectionTimeout } from "./default/icon-network-connection-timeout";