@sunzi/icon 1.2.4 → 1.2.5

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 (53) hide show
  1. package/es/customeow/default/icon-crop-square-1-to-1-outline.js +1 -0
  2. package/es/customeow/default/icon-crop-square-16-to-9-outline.js +1 -0
  3. package/es/customeow/default/icon-crop-square-21-to-9-outline.js +1 -0
  4. package/es/customeow/default/icon-crop-square-3-to-4-outline.js +1 -0
  5. package/es/customeow/default/icon-crop-square-4-to-3-outline.js +1 -0
  6. package/es/customeow/default/icon-crop-square-9-to-16-outline.js +1 -0
  7. package/es/customeow/default/icon-crop-square-9-to-21-outline.js +1 -0
  8. package/es/customeow/default/icon-image-ai-solid.js +1 -0
  9. package/es/customeow/default/icon-plus-small-outline.js +1 -0
  10. package/es/customeow/default/icon-preview-design-solid.js +1 -0
  11. package/es/customeow/default/icon-production-design-solid.js +1 -0
  12. package/es/customeow/default/icon-question-outline.js +1 -1
  13. package/es/customeow/default/icon-star-half-solid.js +1 -0
  14. package/es/customeow/default/icon-star-outline.js +1 -0
  15. package/es/customeow/default/icon-user-group-outline.js +1 -0
  16. package/es/customeow/default/icon-video-ai-solid.js +1 -0
  17. package/es/customeow/index.js +1 -1
  18. package/manifest.json +15 -0
  19. package/package.json +1 -1
  20. package/src/customeow/default/icon-crop-square-1-to-1-outline.tsx +34 -0
  21. package/src/customeow/default/icon-crop-square-16-to-9-outline.tsx +34 -0
  22. package/src/customeow/default/icon-crop-square-21-to-9-outline.tsx +34 -0
  23. package/src/customeow/default/icon-crop-square-3-to-4-outline.tsx +34 -0
  24. package/src/customeow/default/icon-crop-square-4-to-3-outline.tsx +34 -0
  25. package/src/customeow/default/icon-crop-square-9-to-16-outline.tsx +34 -0
  26. package/src/customeow/default/icon-crop-square-9-to-21-outline.tsx +34 -0
  27. package/src/customeow/default/icon-image-ai-solid.tsx +40 -0
  28. package/src/customeow/default/icon-plus-small-outline.tsx +34 -0
  29. package/src/customeow/default/icon-preview-design-solid.tsx +40 -0
  30. package/src/customeow/default/icon-production-design-solid.tsx +40 -0
  31. package/src/customeow/default/icon-question-outline.tsx +1 -1
  32. package/src/customeow/default/icon-star-half-solid.tsx +36 -0
  33. package/src/customeow/default/icon-star-outline.tsx +34 -0
  34. package/src/customeow/default/icon-user-group-outline.tsx +34 -0
  35. package/src/customeow/default/icon-video-ai-solid.tsx +38 -0
  36. package/src/customeow/index.json +15 -0
  37. package/src/customeow/index.tsx +15 -0
  38. package/types/customeow/default/icon-crop-square-1-to-1-outline.d.ts +3 -0
  39. package/types/customeow/default/icon-crop-square-16-to-9-outline.d.ts +3 -0
  40. package/types/customeow/default/icon-crop-square-21-to-9-outline.d.ts +3 -0
  41. package/types/customeow/default/icon-crop-square-3-to-4-outline.d.ts +3 -0
  42. package/types/customeow/default/icon-crop-square-4-to-3-outline.d.ts +3 -0
  43. package/types/customeow/default/icon-crop-square-9-to-16-outline.d.ts +3 -0
  44. package/types/customeow/default/icon-crop-square-9-to-21-outline.d.ts +3 -0
  45. package/types/customeow/default/icon-image-ai-solid.d.ts +3 -0
  46. package/types/customeow/default/icon-plus-small-outline.d.ts +3 -0
  47. package/types/customeow/default/icon-preview-design-solid.d.ts +3 -0
  48. package/types/customeow/default/icon-production-design-solid.d.ts +3 -0
  49. package/types/customeow/default/icon-star-half-solid.d.ts +3 -0
  50. package/types/customeow/default/icon-star-outline.d.ts +3 -0
  51. package/types/customeow/default/icon-user-group-outline.d.ts +3 -0
  52. package/types/customeow/default/icon-video-ai-solid.d.ts +3 -0
  53. package/types/customeow/index.d.ts +15 -0
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare1To1Outline = 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-crop-square-1-to-1-outline`,
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="M15.8171 16.3171V17.8171H4.18329V16.3171H15.8171ZM16.3171 15.8171V4.18335C16.3171 3.90735 16.093 3.68357 15.8171 3.68335H4.18329C3.90715 3.68335 3.68329 3.90721 3.68329 4.18335V15.8171C3.68351 16.0931 3.90728 16.3171 4.18329 16.3171V17.8171L3.97919 17.8064C3.03775 17.711 2.28966 16.9626 2.19403 16.0212L2.18329 15.8171V4.18335C2.18329 3.07878 3.07872 2.18335 4.18329 2.18335H15.8171L16.0212 2.19409C17.0297 2.29654 17.8171 3.14784 17.8171 4.18335V15.8171L17.8063 16.0212C17.7107 16.9625 16.9624 17.7108 16.0212 17.8064L15.8171 17.8171V16.3171C16.0929 16.3169 16.3169 16.093 16.3171 15.8171Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare1To1Outline.displayName = "IconCropSquare1To1Outline";
33
+
34
+ export default IconCropSquare1To1Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare16To9Outline = 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-crop-square-16-to-9-outline`,
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.5 13L1 13L1 7L2.5 7L2.5 13ZM3 13.5L17 13.5C17.2761 13.5 17.5 13.2761 17.5 13L17.5 7C17.5 6.72386 17.2761 6.5 17 6.5L3 6.5C2.72386 6.5 2.5 6.72386 2.5 7L1 7C1 5.96435 1.78722 5.113 2.7959 5.01074L3 5L17 5C18.1046 5 19 5.89543 19 7L19 13C19 14.1046 18.1046 15 17 15L3 15C1.89543 15 1 14.1046 1 13L2.5 13C2.5 13.2761 2.72386 13.5 3 13.5Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare16To9Outline.displayName = "IconCropSquare16To9Outline";
33
+
34
+ export default IconCropSquare16To9Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare21To9Outline = 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-crop-square-21-to-9-outline`,
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="M4 7.5L4 6L16 6L16 7.5L4 7.5ZM3.5 8L3.5 12C3.5 12.2761 3.72386 12.5 4 12.5L16 12.5C16.2761 12.5 16.5 12.2761 16.5 12L16.5 8C16.5 7.72386 16.2761 7.5 16 7.5L16 6L16.2041 6.01074C17.1457 6.1062 17.8938 6.85435 17.9893 7.7959L18 8L18 12C18 13.1046 17.1046 14 16 14L4 14C2.89543 14 2 13.1046 2 12L2 8L2.01074 7.7959C2.1062 6.85435 2.85435 6.1062 3.7959 6.01074L4 6L4 7.5C3.72386 7.5 3.5 7.72386 3.5 8Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare21To9Outline.displayName = "IconCropSquare21To9Outline";
33
+
34
+ export default IconCropSquare21To9Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare3To4Outline = 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-crop-square-3-to-4-outline`,
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="M14 16.5V18H6V16.5H14ZM14.5 16V4C14.5 3.72386 14.2761 3.5 14 3.5H6C5.72386 3.5 5.5 3.72386 5.5 4V16C5.5 16.2761 5.72386 16.5 6 16.5V18C4.89543 18 4 17.1046 4 16V4C4 2.89543 4.89543 2 6 2H14L14.2041 2.01074C15.2128 2.113 16 2.96435 16 4V16C16 17.0357 15.2128 17.887 14.2041 17.9893L14 18V16.5C14.2761 16.5 14.5 16.2761 14.5 16Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare3To4Outline.displayName = "IconCropSquare3To4Outline";
33
+
34
+ export default IconCropSquare3To4Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare4To3Outline = 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-crop-square-4-to-3-outline`,
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="M16 14.5V16H4V14.5H16ZM16.5 14V6C16.5 5.72386 16.2761 5.5 16 5.5H4C3.72386 5.5 3.5 5.72386 3.5 6V14C3.5 14.2761 3.72386 14.5 4 14.5V16C2.96435 16 2.113 15.2128 2.01074 14.2041L2 14V6C2 4.89543 2.89543 4 4 4H16C17.1046 4 18 4.89543 18 6V14L17.9893 14.2041C17.887 15.2128 17.0357 16 16 16V14.5C16.2761 14.5 16.5 14.2761 16.5 14Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare4To3Outline.displayName = "IconCropSquare4To3Outline";
33
+
34
+ export default IconCropSquare4To3Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare9To16Outline = 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-crop-square-9-to-16-outline`,
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="M13 17.5V19H7V17.5H13ZM13.5 17V3C13.5 2.72386 13.2761 2.5 13 2.5H7C6.72386 2.5 6.5 2.72386 6.5 3V17C6.5 17.2761 6.72386 17.5 7 17.5V19L6.7959 18.9893C5.85435 18.8938 5.1062 18.1457 5.01074 17.2041L5 17V3C5 1.89543 5.89543 1 7 1H13C14.1046 1 15 1.89543 15 3V17C15 18.0357 14.2128 18.887 13.2041 18.9893L13 19V17.5C13.2761 17.5 13.5 17.2761 13.5 17Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare9To16Outline.displayName = "IconCropSquare9To16Outline";
33
+
34
+ export default IconCropSquare9To16Outline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconCropSquare9To21Outline = 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-crop-square-9-to-21-outline`,
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="M7.5 16L6 16L6 3L7.5 3L7.5 16ZM8 16.5L12 16.5C12.2761 16.5 12.5 16.2761 12.5 16L12.5 3C12.5 2.72386 12.2761 2.5 12 2.5L8 2.5C7.72386 2.5 7.5 2.72386 7.5 3L6 3L6.01074 2.7959C6.1062 1.85435 6.85435 1.1062 7.7959 1.01074L8 1L12 1C13.1046 1 14 1.89543 14 3L14 16C14 17.1046 13.1046 18 12 18L8 18L7.7959 17.9893C6.85435 17.8938 6.1062 17.1457 6.01074 16.2041L6 16L7.5 16C7.5 16.2761 7.72386 16.5 8 16.5Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconCropSquare9To21Outline.displayName = "IconCropSquare9To21Outline";
33
+
34
+ export default IconCropSquare9To21Outline;
@@ -0,0 +1,40 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconImageAiSolid = 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-image-ai-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="M13.7676 3.17871C13.0527 3.4433 12.5642 4.09942 12.5059 4.84863L12.5 5C12.5 5.81121 13.0049 6.53902 13.7676 6.82129L14.4336 7.06738L14.6787 7.73242C14.961 8.49511 15.6888 9 16.5 9C17.3112 9 18.039 8.4951 18.3213 7.73242L18.5 7.24902V14.75C18.5 15.9926 17.4926 17 16.25 17H3.75C2.50736 17 1.5 15.9926 1.5 14.75V5.25C1.5 4.00736 2.50736 3 3.75 3H14.251L13.7676 3.17871ZM7.03027 8.09082C6.73741 7.79808 6.26259 7.79808 5.96973 8.09082L3 11.0605V14.75C3 15.1642 3.33579 15.5 3.75 15.5H16.25C16.6642 15.5 17 15.1642 17 14.75V12.0605L14.7803 9.84082C14.4874 9.54808 14.0126 9.54808 13.7197 9.84082L11.8105 11.75L12.2803 12.2197C12.5732 12.5126 12.5732 12.9874 12.2803 13.2803C11.9874 13.5732 11.5126 13.5732 11.2197 13.2803L7.03027 8.09082ZM10.5 6C9.94771 6 9.5 6.44772 9.5 7C9.5 7.55228 9.94771 8 10.5 8C11.0523 8 11.5 7.55228 11.5 7C11.5 6.44772 11.0523 6 10.5 6Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M16.5 2.5C16.6846 2.5 16.85 2.61497 16.9141 2.78809L17.2354 3.65625C17.3397 3.93783 17.5621 4.1614 17.8438 4.26562L18.7119 4.58594C18.885 4.65001 19 4.8154 19 5C19 5.1846 18.885 5.34999 18.7119 5.41406L17.8438 5.73535C17.5623 5.83963 17.3396 6.06228 17.2354 6.34375L16.9141 7.21191C16.85 7.38503 16.6846 7.5 16.5 7.5C16.3154 7.5 16.15 7.38503 16.0859 7.21191L15.7656 6.34375C15.6614 6.06213 15.4378 5.83967 15.1562 5.73535L14.2881 5.41406C14.115 5.34999 14 5.1846 14 5C14 4.8154 14.115 4.65001 14.2881 4.58594L15.1562 4.26562C15.438 4.16136 15.6614 3.93797 15.7656 3.65625L16.0859 2.78809C16.15 2.61497 16.3154 2.5 16.5 2.5Z"
31
+ fill={color}
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ );
37
+
38
+ IconImageAiSolid.displayName = "IconImageAiSolid";
39
+
40
+ export default IconImageAiSolid;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconPlusSmallOutline = 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-plus-small-outline`,
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.25 14V10.75H6C5.58579 10.75 5.25 10.4142 5.25 10C5.25 9.58579 5.58579 9.25 6 9.25H9.25V6C9.25 5.58579 9.58579 5.25 10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V9.25H14C14.4142 9.25 14.75 9.58579 14.75 10C14.75 10.4142 14.4142 10.75 14 10.75H10.75V14C10.75 14.4142 10.4142 14.75 10 14.75C9.58579 14.75 9.25 14.4142 9.25 14Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconPlusSmallOutline.displayName = "IconPlusSmallOutline";
33
+
34
+ export default IconPlusSmallOutline;
@@ -0,0 +1,40 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconPreviewDesignSolid = 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-preview-design-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="M14.1064 6.752C14.2495 6.72559 14.25 6.90131 14.25 6.97954V9.97563C14.25 10.3535 14.049 10.7032 13.7227 10.8936L10.6387 12.6924C10.5627 12.7365 10.3274 12.7963 10.3271 12.6924V9.04106C10.3273 8.98561 10.3565 8.9344 10.4043 8.9063L14.0801 6.76176C14.0882 6.75702 14.0972 6.75378 14.1064 6.752ZM5.91895 6.76176L9.59473 8.9063C9.6428 8.93434 9.67269 8.98542 9.67285 9.04106V12.6924C9.67258 12.7738 9.43601 12.7364 9.36035 12.6924L6.27832 10.8985C5.95137 10.7082 5.75 10.3588 5.75 9.98051V6.97173C5.75005 6.89479 5.8099 6.74324 5.89453 6.752C5.90316 6.7529 5.91145 6.75739 5.91895 6.76176ZM9.47363 4.14067C9.80139 3.95268 10.2037 3.95322 10.5312 4.14165L13.7002 5.96489C13.7632 6.00178 13.811 6.09569 13.7793 6.16704C13.7733 6.18051 13.7617 6.1908 13.749 6.19829L10.0791 8.33891C10.0302 8.36741 9.96976 8.36741 9.9209 8.33891L6.24805 6.19633C6.23736 6.19009 6.2273 6.18239 6.2207 6.17192C6.16621 6.08524 6.25106 5.99526 6.31641 5.95708C6.67144 5.74997 8.54182 4.67569 9.47363 4.14067Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M16 0.5C17.1046 0.5 18 1.39543 18 2.5V17.5C18 18.6046 17.1046 19.5 16 19.5H4C2.89543 19.5 2 18.6046 2 17.5V2.5C2 1.39543 2.89543 0.5 4 0.5H16ZM4.5 2C3.94772 2 3.5 2.44772 3.5 3V14C3.5 14.5523 3.94772 15 4.5 15H15.5C16.0523 15 16.5 14.5523 16.5 14V3C16.5 2.44772 16.0523 2 15.5 2H4.5Z"
29
+ fill={color}
30
+ fillRule="evenodd"
31
+ clipRule="evenodd"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ );
37
+
38
+ IconPreviewDesignSolid.displayName = "IconPreviewDesignSolid";
39
+
40
+ export default IconPreviewDesignSolid;
@@ -0,0 +1,40 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconProductionDesignSolid = 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-production-design-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="M13.29 12.4678C13.8384 12.4678 14.1122 12.7418 14.1123 13.29V17.6777C14.1122 18.2258 13.8383 18.5 13.29 18.5H6.70996C6.16171 18.5 5.88686 18.2258 5.88672 17.6777V13.29C5.88678 12.7418 6.16163 12.4678 6.70996 12.4678H13.29Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M13.29 1.5C14.3428 1.5 15.2097 2.36623 15.21 3.41895V4.79004H16.0322C17.3921 4.79004 18.4999 5.89793 18.5 7.25781V13.29C18.5 14.65 17.3922 15.7578 16.0322 15.7578H15.21V13.29C15.2099 11.996 14.5841 11.3711 13.29 11.3711H6.70996C5.41586 11.3711 4.79013 11.996 4.79004 13.29V15.7578H3.96777C2.60777 15.7578 1.5 14.65 1.5 13.29V7.25781C1.50014 5.89793 2.60786 4.79004 3.96777 4.79004H4.79004V3.41895C4.79026 2.36623 5.65719 1.5 6.70996 1.5H13.29ZM12.1934 8.08105C11.7438 8.08116 11.3711 8.45371 11.3711 8.90332C11.3711 9.35289 11.7438 9.72548 12.1934 9.72559H14.3867C14.8364 9.72559 15.2099 9.35296 15.21 8.90332C15.21 8.45364 14.8364 8.08105 14.3867 8.08105H12.1934ZM6.70996 3.14551C6.55655 3.14551 6.43576 3.26559 6.43555 3.41895V4.79004H13.5645V3.41895C13.5642 3.26559 13.4435 3.14551 13.29 3.14551H6.70996Z"
29
+ fill={color}
30
+ fillRule="evenodd"
31
+ clipRule="evenodd"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ );
37
+
38
+ IconProductionDesignSolid.displayName = "IconProductionDesignSolid";
39
+
40
+ export default IconProductionDesignSolid;
@@ -21,7 +21,7 @@ export const IconQuestionOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M6 8.33333V7.66582C6 5.64124 7.64125 4 9.66582 4H9.98856C12.0873 4 13.6826 5.88621 13.3344 7.95583L13.3021 8.14766C13.1311 9.16395 12.4562 10.0241 11.5097 10.4318V10.4318C10.3964 10.9115 9.67518 12.0075 9.67519 13.2198L9.67519 13.6296M9.67517 16.9904H9.68626V17H9.67517V16.9904Z"
24
+ d="M6 8.33333V7.66582C6 5.64124 7.64125 4 9.66582 4H9.98856C12.0873 4 13.6826 5.88621 13.3344 7.95583L13.3021 8.14766C13.1311 9.16395 12.4562 10.0241 11.5097 10.4318C10.3964 10.9115 9.67518 12.0075 9.67519 13.2198L9.67519 13.6296M9.67517 16.9904H9.68626V17H9.67517V16.9904Z"
25
25
  stroke={color}
26
26
  strokeWidth="1.5"
27
27
  strokeLinecap="round"
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconStarHalfSolid = 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-star-half-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.13223 2.07912C9.45333 1.30711 10.5465 1.30713 10.8676 2.07912L12.6986 6.48049L17.4506 6.86135C18.2839 6.92816 18.6224 7.96871 17.9877 8.51272L14.3666 11.6143L15.4731 16.251C15.6549 17.0136 14.888 17.6267 14.2035 17.3408L14.0688 17.2715L10.0004 14.7862L5.93204 17.2715L5.79629 17.3408C5.75078 17.3598 5.70453 17.3735 5.6586 17.3848C5.65444 17.3858 5.65006 17.3858 5.6459 17.3867C5.60471 17.3962 5.56388 17.4036 5.52286 17.4072C5.51276 17.4081 5.50265 17.4077 5.49258 17.4082C5.46041 17.41 5.42864 17.4108 5.39688 17.4092C5.37749 17.4082 5.35843 17.4055 5.33926 17.4033C5.31364 17.4004 5.28823 17.3976 5.26309 17.3926C5.24631 17.3892 5.22981 17.3851 5.21329 17.3809C5.18926 17.3747 5.16538 17.3684 5.142 17.3604C5.12234 17.3536 5.10352 17.345 5.08438 17.3369C5.06349 17.3282 5.04304 17.3188 5.02286 17.3086C5.00709 17.3007 4.99128 17.293 4.97598 17.2842C4.95325 17.2711 4.93116 17.2571 4.90957 17.2422C4.89325 17.231 4.87733 17.2193 4.86172 17.2071C4.84589 17.1946 4.83086 17.1814 4.81582 17.168C4.79876 17.1528 4.78199 17.1375 4.76602 17.1211C4.75186 17.1066 4.73823 17.0916 4.725 17.0762C4.71005 17.0588 4.69572 17.041 4.68204 17.0225C4.66947 17.0055 4.6583 16.9876 4.64688 16.9697C4.63513 16.9514 4.62318 16.9333 4.6127 16.9141C4.60435 16.8987 4.59676 16.8831 4.58926 16.8672C4.57743 16.8422 4.56565 16.8172 4.55606 16.791C4.55105 16.7773 4.54773 16.7631 4.54336 16.749C4.53494 16.7221 4.52683 16.695 4.5209 16.667C4.51798 16.6532 4.51636 16.6391 4.51407 16.625C4.50199 16.551 4.49631 16.4741 4.50332 16.3946C4.5049 16.3767 4.50949 16.359 4.51211 16.3408C4.5164 16.3113 4.51959 16.2811 4.52676 16.251L5.63321 11.6143L2.01309 8.51272C1.89406 8.41073 1.80908 8.29129 1.75528 8.16408C1.52199 7.61279 1.872 6.91564 2.54922 6.86135L7.30118 6.48049L9.13223 2.07912ZM9.99942 13.2881C10.2704 13.2881 10.5415 13.3602 10.7816 13.5069L13.7016 15.2891L12.9076 11.9619C12.7772 11.4149 12.9639 10.8405 13.391 10.4746L15.9887 8.24807L12.5785 7.97561C12.018 7.93053 11.5299 7.57585 11.3139 7.05666L9.99942 3.89748V13.2881Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconStarHalfSolid.displayName = "IconStarHalfSolid";
35
+
36
+ export default IconStarHalfSolid;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconStarOutline = 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-star-outline`,
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="M8.91657 2.53708C9.36366 1.65693 10.6365 1.65689 11.0836 2.53708L11.1256 2.6279L12.8306 6.72849L17.2584 7.08395C18.3388 7.17069 18.7768 8.51835 17.9537 9.2236L14.5797 12.1133L15.6109 16.4336C15.8624 17.488 14.7157 18.3216 13.7906 17.7568L9.99958 15.4404L6.20954 17.7568C5.28442 18.3217 4.13771 17.488 4.38923 16.4336L5.41853 12.1133L2.04646 9.2236C1.22321 8.51834 1.66118 7.17058 2.74177 7.08395L7.16853 6.72849L8.87458 2.6279L8.91657 2.53708ZM8.48786 7.46286C8.3124 7.88471 7.91591 8.17327 7.46052 8.20993L3.53571 8.52438L6.52595 11.0859C6.87283 11.3831 7.02434 11.8496 6.91853 12.2939L6.00446 16.123L9.36482 14.0722L9.51521 13.9931C9.8242 13.8592 10.176 13.8591 10.4849 13.9931L10.6353 14.0722L13.9947 16.124L13.0816 12.2939C12.9758 11.8495 13.1272 11.3831 13.4742 11.0859L16.4634 8.52438L12.5396 8.20993C12.0842 8.17333 11.6878 7.88476 11.5123 7.46286L9.99958 3.82712L8.48786 7.46286Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconStarOutline.displayName = "IconStarOutline";
33
+
34
+ export default IconStarOutline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconUserGroupOutline = 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-user-group-outline`,
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.99963 9.875C11.7893 9.875 13.3873 10.6935 14.441 11.9736C14.8085 11.8297 15.2082 11.75 15.6256 11.75C17.4205 11.7501 18.8756 13.2051 18.8756 15C18.8756 15.0876 18.8717 15.1747 18.8649 15.2607C18.8413 15.5561 18.6462 15.8097 18.3668 15.9082C17.5281 16.2036 16.6278 16.3656 15.692 16.373C15.6408 16.5644 15.5169 16.7299 15.3424 16.8301C13.7679 17.7334 11.9428 18.25 9.99963 18.25C8.05647 18.2499 6.23131 17.7335 4.65686 16.8301C4.48244 16.7299 4.3584 16.5644 4.30725 16.373C3.37215 16.3654 2.47261 16.2034 1.6344 15.9082C1.35492 15.8097 1.15995 15.5561 1.13635 15.2607C1.1295 15.1747 1.12561 15.0876 1.12561 15C1.12561 13.2051 2.58069 11.75 4.37561 11.75C4.79265 11.75 5.19206 11.829 5.5592 11.9727C6.6129 10.693 8.21047 9.87511 9.99963 9.875ZM9.99963 11.375C8.49523 11.3751 7.17286 12.1564 6.41663 13.3389C5.99836 13.9929 5.75382 14.7689 5.74963 15.6035C5.7496 15.6107 5.74963 15.6178 5.74963 15.625C5.74963 15.656 5.75093 15.6869 5.75159 15.7178C7.02313 16.3766 8.4667 16.7499 9.99963 16.75C11.5322 16.75 12.9754 16.3762 14.2467 15.7178C14.2474 15.6869 14.2496 15.656 14.2496 15.625C14.2496 15.617 14.2497 15.6101 14.2496 15.6035C14.2454 14.7691 14.0017 13.9928 13.5836 13.3389C12.8273 12.1563 11.5043 11.375 9.99963 11.375ZM4.37561 13.25C3.52739 13.25 2.81922 13.8533 2.65881 14.6543C3.18356 14.7919 3.7336 14.8669 4.30139 14.873C4.37419 14.3166 4.52546 13.7851 4.74573 13.29C4.62653 13.2644 4.50288 13.25 4.37561 13.25ZM15.6256 13.25C15.4974 13.25 15.3726 13.264 15.2526 13.29C15.473 13.7852 15.625 14.3164 15.6979 14.873C16.2657 14.8671 16.8157 14.7917 17.3405 14.6543C17.1799 13.8535 16.4736 13.2501 15.6256 13.25ZM5.49963 8.125C5.49963 7.50368 4.99595 7 4.37463 7C3.75348 7.0002 3.24963 7.5038 3.24963 8.125C3.24963 8.7462 3.75348 9.2498 4.37463 9.25C4.99595 9.25 5.49963 8.74632 5.49963 8.125ZM16.7496 8.125C16.7496 7.50368 16.246 7 15.6246 7C15.0035 7.0002 14.4996 7.5038 14.4996 8.125C14.4996 8.7462 15.0035 9.2498 15.6246 9.25C16.246 9.25 16.7496 8.74632 16.7496 8.125ZM11.7496 5.625C11.7496 4.6585 10.9661 3.875 9.99963 3.875C9.0333 3.8752 8.24963 4.65862 8.24963 5.625C8.24963 6.59138 9.0333 7.3748 9.99963 7.375C10.9661 7.375 11.7496 6.5915 11.7496 5.625ZM6.99963 8.125C6.99963 9.57475 5.82438 10.75 4.37463 10.75C2.92505 10.7498 1.74963 9.57463 1.74963 8.125C1.74963 6.67537 2.92505 5.5002 4.37463 5.5C5.82438 5.5 6.99963 6.67525 6.99963 8.125ZM18.2496 8.125C18.2496 9.57475 17.0744 10.75 15.6246 10.75C14.1751 10.7498 12.9996 9.57463 12.9996 8.125C12.9996 6.67537 14.1751 5.5002 15.6246 5.5C17.0744 5.5 18.2496 6.67525 18.2496 8.125ZM13.2496 5.625C13.2496 7.41993 11.7946 8.875 9.99963 8.875C8.20488 8.8748 6.74963 7.4198 6.74963 5.625C6.74963 3.8302 8.20488 2.3752 9.99963 2.375C11.7946 2.375 13.2496 3.83007 13.2496 5.625Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconUserGroupOutline.displayName = "IconUserGroupOutline";
33
+
34
+ export default IconUserGroupOutline;
@@ -0,0 +1,38 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "../../types";
3
+
4
+ export const IconVideoAiSolid = 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-ai-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 1.75C11.585 1.75 13.0644 2.19861 14.3213 2.97363L13.7676 3.17871C13.3893 3.31873 13.0748 3.56871 12.8535 3.88379C11.9866 3.47835 11.0202 3.25 10 3.25C6.27208 3.25 3.25 6.27208 3.25 10C3.25 13.7279 6.27208 16.75 10 16.75C13.7279 16.75 16.75 13.7279 16.75 10C16.75 9.65684 16.7202 9.32041 16.6699 8.99121C17.2257 8.94251 17.7271 8.65724 18.0547 8.21875C18.1814 8.79246 18.25 9.3882 18.25 10C18.25 14.5563 14.5563 18.25 10 18.25C5.44365 18.25 1.75 14.5563 1.75 10C1.75 5.44365 5.44365 1.75 10 1.75Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M7.70801 7.66016C7.70817 6.92963 8.49318 6.46759 9.13184 6.82227L13.3428 9.16211C14 9.52724 14 10.4728 13.3428 10.8379L9.13184 13.1777C8.4932 13.5324 7.70822 13.0703 7.70801 12.3398V7.66016ZM16.5 2.5C16.6846 2.5 16.85 2.61497 16.9141 2.78809L17.2354 3.65625C17.3397 3.93782 17.5621 4.1614 17.8438 4.26562L18.7119 4.58594C18.885 4.65001 19 4.8154 19 5 19 5.1846 18.885 5.34999 18.7119 5.41406L17.8438 5.73535C17.5623 5.83963 17.3396 6.06228 17.2354 6.34375L16.9141 7.21191C16.85 7.38503 16.6846 7.5 16.5 7.5 16.3154 7.5 16.15 7.38503 16.0859 7.21191L15.7656 6.34375C15.6614 6.06213 15.4378 5.83967 15.1562 5.73535L14.2881 5.41406C14.115 5.34999 14 5.1846 14 5 14 4.8154 14.115 4.65001 14.2881 4.58594L15.1562 4.26562C15.438 4.16136 15.6614 3.93797 15.7656 3.65625L16.0859 2.78809C16.15 2.61497 16.3154 2.5 16.5 2.5Z"
29
+ fill={color}
30
+ />
31
+ </svg>
32
+ );
33
+ }
34
+ );
35
+
36
+ IconVideoAiSolid.displayName = "IconVideoAiSolid";
37
+
38
+ export default IconVideoAiSolid;
@@ -127,6 +127,13 @@
127
127
  { "componentName": "IconArrowsSortOutline" },
128
128
  { "componentName": "IconArrowsRightLeftSortOutline" },
129
129
  { "componentName": "IconTableExportPhotosOutline" },
130
+ { "componentName": "IconCropSquare1To1Outline" },
131
+ { "componentName": "IconCropSquare16To9Outline" },
132
+ { "componentName": "IconCropSquare9To16Outline" },
133
+ { "componentName": "IconCropSquare4To3Outline" },
134
+ { "componentName": "IconCropSquare3To4Outline" },
135
+ { "componentName": "IconCropSquare21To9Outline" },
136
+ { "componentName": "IconCropSquare9To21Outline" },
130
137
  { "componentName": "IconKeyboardOutline" },
131
138
  { "componentName": "IconRotateLeft90Outline" },
132
139
  { "componentName": "IconRotateRight90Outline" },
@@ -215,6 +222,7 @@
215
222
  { "componentName": "IconInformationCircleOutline" },
216
223
  { "componentName": "IconRotateOutline" },
217
224
  { "componentName": "IconLanguageOutline" },
225
+ { "componentName": "IconPlusSmallOutline" },
218
226
  { "componentName": "IconPlusOutline" },
219
227
  { "componentName": "IconPlusSquareOutline" },
220
228
  { "componentName": "IconMinusOutline" },
@@ -225,6 +233,8 @@
225
233
  { "componentName": "IconClipboardDocumentListOutline" },
226
234
  { "componentName": "IconCalendarOutline" },
227
235
  { "componentName": "IconGlobeAltOutline" },
236
+ { "componentName": "IconUserGroupOutline" },
237
+ { "componentName": "IconStarOutline" },
228
238
  { "componentName": "IconFileImageOutline" },
229
239
  { "componentName": "IconFilePdfOutline" },
230
240
  { "componentName": "IconFileFontOutline" },
@@ -339,6 +349,7 @@
339
349
  { "componentName": "IconEyeSolid" },
340
350
  { "componentName": "IconEyeSlashSolid" },
341
351
  { "componentName": "IconStarSolid" },
352
+ { "componentName": "IconStarHalfSolid" },
342
353
  { "componentName": "IconStopSquareSolid" },
343
354
  { "componentName": "IconRocketLaunch" },
344
355
  { "componentName": "IconBellNoticeSolid" },
@@ -360,6 +371,8 @@
360
371
  { "componentName": "IconTagSolid" },
361
372
  { "componentName": "IconDesignSolid" },
362
373
  { "componentName": "IconMagicAiSolid" },
374
+ { "componentName": "IconImageAiSolid" },
375
+ { "componentName": "IconVideoAiSolid" },
363
376
  { "componentName": "IconFireworksSolid" },
364
377
  { "componentName": "IconResetSolid" },
365
378
  { "componentName": "IconCopyLinkSolid" },
@@ -636,6 +649,8 @@
636
649
  { "componentName": "IconProductsSolid" },
637
650
  { "componentName": "IconDocumentCopyIdSolid" },
638
651
  { "componentName": "IconRecommendSolid" },
652
+ { "componentName": "IconProductionDesignSolid" },
653
+ { "componentName": "IconPreviewDesignSolid" },
639
654
  { "componentName": "IconDetectionSolid" },
640
655
  { "componentName": "IconFaviconSolid" },
641
656
  { "componentName": "IconImageToImageSolid" },