@sunzi/icon 1.0.22 → 1.0.25

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 (63) hide show
  1. package/dist/customeow/index.es.js +1 -1
  2. package/dist/customeow/index.es.js.map +1 -1
  3. package/dist/customeow-shein/index.es.js +1 -1
  4. package/dist/customeow-shein/index.es.js.map +1 -1
  5. package/manifest.json +2 -0
  6. package/package.json +1 -1
  7. package/src/customeow/default/icon-check-circle-outline.tsx +1 -1
  8. package/src/customeow/default/icon-check-circle-solid.tsx +1 -1
  9. package/src/customeow/default/icon-check-list-outline.tsx +36 -0
  10. package/src/customeow/default/icon-circle.tsx +31 -0
  11. package/src/customeow/default/icon-close-circle-outline.tsx +1 -1
  12. package/src/customeow/default/icon-document-mandate-solid.tsx +36 -0
  13. package/src/customeow/default/icon-drag-cursor-arrow-outline.tsx +2 -2
  14. package/src/customeow/default/icon-exclamation-warning-triangle-solid.tsx +1 -1
  15. package/src/customeow/default/icon-font-managemen-solid.tsx +34 -0
  16. package/src/customeow/default/icon-heart.tsx +34 -0
  17. package/src/customeow/default/icon-information-circle-alert-solid.tsx +37 -0
  18. package/src/customeow/default/icon-information-circle-outline.tsx +1 -1
  19. package/src/customeow/default/icon-light-solid.tsx +34 -0
  20. package/src/customeow/default/icon-logout-solid.tsx +36 -0
  21. package/src/customeow/default/icon-number-sorted-outline.tsx +36 -0
  22. package/src/customeow/default/icon-qr-code-solid.tsx +1 -29
  23. package/src/customeow/default/icon-question-mark-circle-outline.tsx +1 -1
  24. package/src/customeow/default/icon-radio-solid.tsx +31 -0
  25. package/src/customeow/default/icon-rotate-right-rectangle-outline.tsx +2 -2
  26. package/src/customeow/default/icon-store-solid.tsx +42 -0
  27. package/src/customeow/default/icon-text-outline.tsx +36 -0
  28. package/src/customeow/default/icon-tool-alert-outline.tsx +40 -0
  29. package/src/customeow/default/icon-tool-font-color-outline.tsx +40 -0
  30. package/src/customeow/default/icon-tool-font-size-outline.tsx +38 -0
  31. package/src/customeow/default/icon-tool-section-title-outline.tsx +34 -0
  32. package/src/customeow/default/icon-tooth-solid.tsx +36 -0
  33. package/src/customeow/default/icon-type-insert-solid.tsx +36 -0
  34. package/src/customeow/default/icon-type-list-outline.tsx +36 -0
  35. package/src/customeow/index.json +20 -1
  36. package/src/customeow/index.tsx +19 -0
  37. package/src/customeow-shein/default/icon-information-circle-alert-solid.tsx +37 -0
  38. package/src/customeow-shein/default/icon-radio-solid.tsx +36 -0
  39. package/src/customeow-shein/index.json +2 -0
  40. package/src/customeow-shein/index.tsx +2 -0
  41. package/types/customeow/default/icon-check-list-outline.d.ts +3 -0
  42. package/types/customeow/default/icon-circle.d.ts +3 -0
  43. package/types/customeow/default/icon-document-mandate-solid.d.ts +3 -0
  44. package/types/customeow/default/icon-font-managemen-solid.d.ts +3 -0
  45. package/types/customeow/default/icon-heart.d.ts +3 -0
  46. package/types/customeow/default/icon-information-circle-alert-solid.d.ts +3 -0
  47. package/types/customeow/default/icon-light-solid.d.ts +3 -0
  48. package/types/customeow/default/icon-logout-solid.d.ts +3 -0
  49. package/types/customeow/default/icon-number-sorted-outline.d.ts +3 -0
  50. package/types/customeow/default/icon-radio-solid.d.ts +3 -0
  51. package/types/customeow/default/icon-store-solid.d.ts +3 -0
  52. package/types/customeow/default/icon-text-outline.d.ts +3 -0
  53. package/types/customeow/default/icon-tool-alert-outline.d.ts +3 -0
  54. package/types/customeow/default/icon-tool-font-color-outline.d.ts +3 -0
  55. package/types/customeow/default/icon-tool-font-size-outline.d.ts +3 -0
  56. package/types/customeow/default/icon-tool-section-title-outline.d.ts +3 -0
  57. package/types/customeow/default/icon-tooth-solid.d.ts +3 -0
  58. package/types/customeow/default/icon-type-insert-solid.d.ts +3 -0
  59. package/types/customeow/default/icon-type-list-outline.d.ts +3 -0
  60. package/types/customeow/index.d.ts +19 -0
  61. package/types/customeow-shein/default/icon-information-circle-alert-solid.d.ts +3 -0
  62. package/types/customeow-shein/default/icon-radio-solid.d.ts +3 -0
  63. package/types/customeow-shein/index.d.ts +2 -0
@@ -0,0 +1,31 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconCircle = 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-circle`,
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
+ <circle cx="10" cy="10" r="8" fill={color} />
24
+ </svg>
25
+ );
26
+ }
27
+ );
28
+
29
+ IconCircle.displayName = "IconCircle";
30
+
31
+ export default IconCircle;
@@ -21,7 +21,7 @@ export const IconCloseCircleOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M10 3.23741C6.31789 3.23741 3.25277 6.14641 3.25277 10C3.25277 13.7536 6.38795 16.7742 10 16.7742C13.612 16.7742 16.7551 13.8061 16.7551 10C16.7551 6.29232 13.7442 3.23741 10 3.23741ZM1.75375 10C1.75375 5.44575 5.44572 1.75378 10 1.75378C14.5543 1.75378 18.2462 5.44575 18.2462 10C18.2462 14.5543 14.5543 18.2463 10 18.2463C5.44572 18.2463 1.75375 14.5543 1.75375 10ZM7.59812 7.59815C7.84584 7.35043 8.32457 7.285 8.62131 7.58173L10 8.94614L11.3557 7.58173C11.6718 7.26558 12.1729 7.35775 12.4206 7.60547C12.6683 7.85319 12.7117 8.34447 12.4206 8.63555L11.0562 10L12.4206 11.3644C12.7256 11.6694 12.6496 12.1542 12.4019 12.4019C12.1542 12.6496 11.6524 12.7205 11.3723 12.4404L10 11.0593L8.66024 12.4019C8.32759 12.7346 7.84584 12.6496 7.59812 12.4019C7.3504 12.1542 7.27148 11.6738 7.57812 11.3672L8.94854 10L7.59812 8.64109C7.27775 8.32073 7.3504 7.84587 7.59812 7.59815Z"
24
+ d="M10 3.48362C6.37173 3.48362 3.5 6.39537 3.5 10C3.5 13.6046 6.45876 16.5318 10 16.5318C13.5413 16.5318 16.5025 13.5176 16.5025 10C16.5025 6.4824 13.6283 3.48362 10 3.48362ZM2.00098 10C2.00098 5.52512 5.70453 2 10 2C14.2955 2 18 5.4671 18 10C18 14.5329 14.2955 18.0039 10 18.0039C5.70453 18.0039 2.00098 14.4749 2.00098 10ZM7.59814 7.59812C7.84586 7.3504 8.32459 7.28497 8.62132 7.5817L10 8.94611L11.3557 7.5817C11.6718 7.26555 12.1729 7.35772 12.4206 7.60544C12.6683 7.85316 12.7117 8.34444 12.4206 8.63552L11.0562 10L12.4206 11.3643C12.7256 11.6694 12.6496 12.1542 12.4019 12.4019C12.1542 12.6496 11.6524 12.7204 11.3723 12.4403L10 11.0593L8.66026 12.4019C8.32761 12.7345 7.84586 12.6496 7.59814 12.4019C7.35042 12.1542 7.2715 11.6738 7.57814 11.3672L8.94856 10L7.59814 8.64106C7.27777 8.3207 7.35042 7.84584 7.59814 7.59812Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconDocumentMandateSolid = 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-document-mandate-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 2.5C9 1.94772 9.44772 1.5 10 1.5H14C14.5523 1.5 15 1.94772 15 2.5H16C16.5523 2.5 17 2.94772 17 3.5V13.5C17 14.0523 16.5523 14.5 16 14.5H14.5V7C14.5 5.89543 13.6046 5 12.5 5H7V3.5C7 2.94772 7.44772 2.5 8 2.5H9ZM3 7.5C3 6.94771 3.44772 6.5 4 6.5H12C12.5523 6.5 13 6.94772 13 7.5V17.5C13 18.0523 12.5523 18.5 12 18.5H4C3.44772 18.5 3 18.0523 3 17.5V7.5ZM5.75 9.5C5.33579 9.5 5 9.83579 5 10.25C5 10.6642 5.33579 11 5.75 11H8.25C8.66421 11 9 10.6642 9 10.25C9 9.83579 8.66421 9.5 8.25 9.5H5.75ZM5.75 13.5C5.33579 13.5 5 13.8358 5 14.25C5 14.6642 5.33579 15 5.75 15H10.25C10.6642 15 11 14.6642 11 14.25C11 13.8358 10.6642 13.5 10.25 13.5H5.75Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconDocumentMandateSolid.displayName = "IconDocumentMandateSolid";
35
+
36
+ export default IconDocumentMandateSolid;
@@ -21,13 +21,13 @@ export const IconDragCursorArrowOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M7.02119 5.41665C7.25441 5.28255 7.54727 5.31274 7.74823 5.49159L13.6539 10.7474C13.8427 10.9154 13.9117 11.1807 13.8287 11.4194 13.7457 11.6582 13.5271 11.8235 13.2747 11.8382L11.4938 11.9419 12.0801 12.9616C12.2522 13.2609 12.1491 13.6429 11.8498 13.815 11.5506 13.987 11.1685 13.8839 10.9965 13.5847L10.4102 12.565 9.42475 14.0518C9.2851 14.2625 9.03226 14.3683 8.78414 14.3199 8.53603 14.2715 8.34149 14.0784 8.29126 13.8307L6.72019 6.08267C6.66673 5.81902 6.78798 5.55074 7.02119 5.41665ZM8.31787 7.67187 9.21646 12.1034 9.92697 11.0315C10.0356 10.8675 10.2152 10.7643 10.4116 10.7528L11.6957 10.678 8.31787 7.67187ZM2.08331 2.70831C2.08331 2.36314 2.36314 2.08331 2.70831 2.08331H3.95831C4.30349 2.08331 4.58331 2.36314 4.58331 2.70831 4.58331 3.05349 4.30349 3.33331 3.95831 3.33331H3.33331V3.95831C3.33331 4.30349 3.05349 4.58331 2.70831 4.58331 2.36314 4.58331 2.08331 4.30349 2.08331 3.95831V2.70831ZM5.83331 2.70831C5.83331 2.36314 6.11313 2.08331 6.45831 2.08331H8.95831C9.30349 2.08331 9.58331 2.36314 9.58331 2.70831 9.58331 3.05349 9.30349 3.33331 8.95831 3.33331H6.45831C6.11313 3.33331 5.83331 3.05349 5.83331 2.70831ZM10.8333 2.70831C10.8333 2.36314 11.1131 2.08331 11.4583 2.08331H12.7083C13.0535 2.08331 13.3333 2.36314 13.3333 2.70831V3.76601C13.3333 4.11118 13.0535 4.39101 12.7083 4.39101 12.3631 4.39101 12.0833 4.11118 12.0833 3.76601V3.33331H11.4583C11.1131 3.33331 10.8333 3.05349 10.8333 2.70831ZM12.7083 5.25639C13.0535 5.25639 13.3333 5.53621 13.3333 5.88139V6.93908C13.3333 7.28426 13.0535 7.56408 12.7083 7.56408 12.3631 7.56408 12.0833 7.28426 12.0833 6.93908V5.88139C12.0833 5.53621 12.3631 5.25639 12.7083 5.25639ZM2.70831 5.83331C3.05349 5.83331 3.33331 6.11314 3.33331 6.45831V8.95831C3.33331 9.30349 3.05349 9.58331 2.70831 9.58331 2.36314 9.58331 2.08331 9.30349 2.08331 8.95831V6.45831C2.08331 6.11314 2.36314 5.83331 2.70831 5.83331ZM2.70831 10.8333C3.05349 10.8333 3.33331 11.1131 3.33331 11.4583V12.0833H3.54165C3.88682 12.0833 4.16665 12.3631 4.16665 12.7083 4.16665 13.0535 3.88682 13.3333 3.54165 13.3333H2.70831C2.36314 13.3333 2.08331 13.0535 2.08331 12.7083V11.4583C2.08331 11.1131 2.36314 10.8333 2.70831 10.8333ZM4.58331 12.7083C4.58331 12.3631 4.86313 12.0833 5.20831 12.0833H6.04165C6.38682 12.0833 6.66665 12.3631 6.66665 12.7083 6.66665 13.0535 6.38682 13.3333 6.04165 13.3333H5.20831C4.86313 13.3333 4.58331 13.0535 4.58331 12.7083Z"
24
+ d="M7.02119 5.41671C7.25441 5.28262 7.54727 5.3128 7.74823 5.49165L13.6539 10.7474C13.8427 10.9155 13.9117 11.1807 13.8287 11.4195 13.7457 11.6583 13.5271 11.8235 13.2747 11.8382L11.4938 11.942 12.0801 12.9617C12.2522 13.2609 12.1491 13.643 11.8498 13.815 11.5506 13.9871 11.1685 13.884 10.9965 13.5847L10.4102 12.5651 9.42475 14.0518C9.2851 14.2625 9.03226 14.3684 8.78414 14.32 8.53603 14.2716 8.34149 14.0785 8.29126 13.8308L6.72019 6.08274C6.66673 5.81908 6.78798 5.5508 7.02119 5.41671ZM8.31787 7.67193 9.21646 12.1035 9.92697 11.0315C10.0356 10.8676 10.2152 10.7643 10.4116 10.7529L11.6957 10.6781 8.31787 7.67193ZM2.08331 2.70837C2.08331 2.3632 2.36314 2.08337 2.70831 2.08337H3.95831C4.30349 2.08337 4.58331 2.3632 4.58331 2.70837 4.58331 3.05355 4.30349 3.33337 3.95831 3.33337H3.33331V3.95837C3.33331 4.30355 3.05349 4.58337 2.70831 4.58337 2.36314 4.58337 2.08331 4.30355 2.08331 3.95837V2.70837ZM5.83331 2.70837C5.83331 2.3632 6.11313 2.08337 6.45831 2.08337H8.95831C9.30349 2.08337 9.58331 2.3632 9.58331 2.70837 9.58331 3.05355 9.30349 3.33337 8.95831 3.33337H6.45831C6.11313 3.33337 5.83331 3.05355 5.83331 2.70837ZM10.8333 2.70837C10.8333 2.3632 11.1131 2.08337 11.4583 2.08337H12.7083C13.0535 2.08337 13.3333 2.3632 13.3333 2.70837V3.76607C13.3333 4.11124 13.0535 4.39107 12.7083 4.39107 12.3631 4.39107 12.0833 4.11124 12.0833 3.76607V3.33337H11.4583C11.1131 3.33337 10.8333 3.05355 10.8333 2.70837ZM12.7083 5.25645C13.0535 5.25645 13.3333 5.53627 13.3333 5.88145V6.93914C13.3333 7.28432 13.0535 7.56414 12.7083 7.56414 12.3631 7.56414 12.0833 7.28432 12.0833 6.93914V5.88145C12.0833 5.53627 12.3631 5.25645 12.7083 5.25645ZM2.70831 5.83337C3.05349 5.83337 3.33331 6.1132 3.33331 6.45837V8.95837C3.33331 9.30355 3.05349 9.58337 2.70831 9.58337 2.36314 9.58337 2.08331 9.30355 2.08331 8.95837V6.45837C2.08331 6.1132 2.36314 5.83337 2.70831 5.83337ZM2.70831 10.8334C3.05349 10.8334 3.33331 11.1132 3.33331 11.4584V12.0834H3.54165C3.88682 12.0834 4.16665 12.3632 4.16665 12.7084 4.16665 13.0536 3.88682 13.3334 3.54165 13.3334H2.70831C2.36314 13.3334 2.08331 13.0536 2.08331 12.7084V11.4584C2.08331 11.1132 2.36314 10.8334 2.70831 10.8334ZM4.58331 12.7084C4.58331 12.3632 4.86313 12.0834 5.20831 12.0834H6.04165C6.38682 12.0834 6.66665 12.3632 6.66665 12.7084 6.66665 13.0536 6.38682 13.3334 6.04165 13.3334H5.20831C4.86313 13.3334 4.58331 13.0536 4.58331 12.7084Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
28
28
  />
29
29
  <path
30
- d="M13.7879 6.04165C13.7879 5.69647 14.0677 5.41665 14.4129 5.41665H15.2083C16.0137 5.41665 16.6666 6.06956 16.6666 6.87498V16.0416C16.6666 16.8471 16.0137 17.5 15.2083 17.5H6.04165C5.23623 17.5 4.58331 16.8471 4.58331 16.0416V14.7916C4.58331 14.4465 4.86313 14.1666 5.20831 14.1666C5.55349 14.1666 5.83331 14.4465 5.83331 14.7916V16.0416C5.83331 16.1567 5.92659 16.25 6.04165 16.25H15.2083C15.3234 16.25 15.4166 16.1567 15.4166 16.0416V6.87498C15.4166 6.75992 15.3234 6.66665 15.2083 6.66665H14.4129C14.0677 6.66665 13.7879 6.38682 13.7879 6.04165Z"
30
+ d="M13.7879 6.04171C13.7879 5.69653 14.0677 5.41671 14.4129 5.41671H15.2083C16.0137 5.41671 16.6666 6.06963 16.6666 6.87504V16.0417C16.6666 16.8471 16.0137 17.5 15.2083 17.5H6.04165C5.23623 17.5 4.58331 16.8471 4.58331 16.0417V14.7917C4.58331 14.4465 4.86313 14.1667 5.20831 14.1667C5.55349 14.1667 5.83331 14.4465 5.83331 14.7917V16.0417C5.83331 16.1568 5.92659 16.25 6.04165 16.25H15.2083C15.3234 16.25 15.4166 16.1568 15.4166 16.0417V6.87504C15.4166 6.75998 15.3234 6.66671 15.2083 6.66671H14.4129C14.0677 6.66671 13.7879 6.38689 13.7879 6.04171Z"
31
31
  fill={color}
32
32
  fillRule="evenodd"
33
33
  clipRule="evenodd"
@@ -23,7 +23,7 @@ export const IconExclamationWarningTriangleSolid = forwardRef<
23
23
  ref={forwardedRef}
24
24
  >
25
25
  <path
26
- d="M8.4845 2.49499C9.15808 1.32833 10.842 1.32833 11.5156 2.495L17.7943 13.37C18.4678 14.5367 17.6259 15.995 16.2787 15.995H3.72136C2.37421 15.995 1.53224 14.5367 2.20582 13.37L8.4845 2.49499ZM10 5C10.4142 5 10.75 5.33579 10.75 5.75V9.25C10.75 9.66421 10.4142 10 10 10C9.58579 10 9.25 9.66421 9.25 9.25L9.25 5.75C9.25 5.33579 9.58579 5 10 5ZM10 14C10.5523 14 11 13.5523 11 13C11 12.4477 10.5523 12 10 12C9.44772 12 9 12.4477 9 13C9 13.5523 9.44772 14 10 14Z"
26
+ d="M8.4845 4.49499C9.15808 3.32833 10.842 3.32833 11.5156 4.495L17.7943 15.37C18.4678 16.5367 17.6259 17.995 16.2787 17.995H3.72136C2.37421 17.995 1.53224 16.5367 2.20582 15.37L8.4845 4.49499ZM10 7C10.4142 7 10.75 7.33579 10.75 7.75V11.25C10.75 11.6642 10.4142 12 10 12C9.58579 12 9.25 11.6642 9.25 11.25L9.25 7.75C9.25 7.33579 9.58579 7 10 7ZM10 16C10.5523 16 11 15.5523 11 15C11 14.4477 10.5523 14 10 14C9.44772 14 9 14.4477 9 15C9 15.5523 9.44772 16 10 16Z"
27
27
  fill={color}
28
28
  fillRule="evenodd"
29
29
  clipRule="evenodd"
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconFontManagemenSolid = 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-font-managemen-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.5534 3.23718C13.12 3.23718 12.2004 3 10.724 3C5.95377 3 3.729 5.51342 3.729 8.06671C3.729 9.57094 4.49914 10.0655 6.01813 10.0655C5.91121 9.84797 5.71869 9.61032 5.71869 8.54156C5.71869 5.55329 6.93773 4.68235 8.49976 4.62282C8.49976 4.62282 7.21842 16.2445 3.5 17.6386V18H8.51296L10.2234 10.5H13.3561L14.0538 8.625H10.6511L11.4734 5.01891C12.4148 5.19703 13.3344 5.37515 14.1258 5.37515C15.1097 5.37515 16.008 5.09812 16.5 3.00047C15.9011 3.17859 15.2592 3.23765 14.5534 3.23765V3.23718Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconFontManagemenSolid.displayName = "IconFontManagemenSolid";
33
+
34
+ export default IconFontManagemenSolid;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconHeart = 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-heart`,
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.65298 16.9149L9.6476 16.9121L9.62912 16.9024C9.61341 16.8941 9.59102 16.8822 9.56238 16.8667C9.50511 16.8358 9.42281 16.7907 9.31906 16.732C9.11164 16.6146 8.81794 16.4425 8.46663 16.2206C7.76556 15.7777 6.82731 15.1314 5.88539 14.3197C4.04447 12.7332 2 10.3523 2 7.5C2 5.01472 4.01472 3 6.5 3C7.9144 3 9.17542 3.65238 10 4.67158C10.8246 3.65238 12.0856 3 13.5 3C15.9853 3 18 5.01472 18 7.5C18 10.3523 15.9555 12.7332 14.1146 14.3197C13.1727 15.1314 12.2344 15.7777 11.5334 16.2206C11.1821 16.4425 10.8884 16.6146 10.6809 16.732C10.5772 16.7907 10.4949 16.8358 10.4376 16.8667C10.409 16.8822 10.3866 16.8941 10.3709 16.9024L10.3524 16.9121L10.347 16.9149L10.3453 16.9158C10.13 17.03 9.87 17.03 9.65529 16.9161L9.65298 16.9149Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconHeart.displayName = "IconHeart";
33
+
34
+ export default IconHeart;
@@ -0,0 +1,37 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconInformationCircleAlertSolid = forwardRef<
5
+ SVGSVGElement,
6
+ IconProps
7
+ >(({ color = "currentColor", ...props }, forwardedRef) => {
8
+ const { className } = props;
9
+ props = {
10
+ ...props,
11
+ width: `${props.width || props.size || 20}`,
12
+ height: `${props.height || props.size || 20}`,
13
+ className: `${
14
+ className ? className + " " : ""
15
+ }customeow-icon customeow-icon-icon-information-circle-alert-solid`,
16
+ };
17
+ return (
18
+ <svg
19
+ viewBox="0 0 20 20"
20
+ fill="none"
21
+ xmlns="http://www.w3.org/2000/svg"
22
+ {...props}
23
+ ref={forwardedRef}
24
+ >
25
+ <path
26
+ d="M18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10ZM11 6C11 6.55228 10.5523 7 10 7C9.44771 7 9 6.55228 9 6C9 5.44772 9.44771 5 10 5C10.5523 5 11 5.44772 11 6ZM9 9C8.58579 9 8.25 9.33579 8.25 9.75C8.25 10.1642 8.58579 10.5 9 10.5H9.25338C9.41332 10.5 9.53213 10.6481 9.49743 10.8042L9.03829 12.8704C8.79542 13.9633 9.62706 15 10.7466 15H11C11.4142 15 11.75 14.6642 11.75 14.25C11.75 13.8358 11.4142 13.5 11 13.5H10.7466C10.5867 13.5 10.4679 13.3519 10.5026 13.1958L10.9617 11.1296C11.2046 10.0367 10.3729 9 9.25338 9H9Z"
27
+ fill={color}
28
+ fillRule="evenodd"
29
+ clipRule="evenodd"
30
+ />
31
+ </svg>
32
+ );
33
+ });
34
+
35
+ IconInformationCircleAlertSolid.displayName = "IconInformationCircleAlertSolid";
36
+
37
+ export default IconInformationCircleAlertSolid;
@@ -23,7 +23,7 @@ export const IconInformationCircleOutline = forwardRef<
23
23
  ref={forwardedRef}
24
24
  >
25
25
  <path
26
- d="M10 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 6.27208 13.7279 3.25 10 3.25ZM1.75 10C1.75 5.44365 5.44365 1.75 10 1.75C14.5563 1.75 18.25 5.44365 18.25 10C18.25 14.5563 14.5563 18.25 10 18.25C5.44365 18.25 1.75 14.5563 1.75 10ZM9.25 6.875C9.25 6.46079 9.58579 6.125 10 6.125H10.0063C10.4205 6.125 10.7563 6.46079 10.7563 6.875V6.88125C10.7563 7.29546 10.4205 7.63125 10.0063 7.63125H10C9.58579 7.63125 9.25 7.29546 9.25 6.88125V6.875ZM9.51124 10.1127C9.19095 10.172 8.85714 10.0163 8.70418 9.71041C8.51894 9.33993 8.66911 8.88942 9.03959 8.70418L9.07416 8.68689C10.1249 8.16153 11.3079 9.11056 11.023 10.2502L10.4888 12.3873C10.809 12.328 11.1429 12.4837 11.2958 12.7896C11.4811 13.1601 11.3309 13.6106 10.9604 13.7958L10.9258 13.8131C9.87513 14.3385 8.69206 13.3894 8.97697 12.2498L9.51124 10.1127Z"
26
+ d="M10 3.5C6.53936 3.5 3.5 6.27649 3.5 10C3.5 13.7235 6.53936 16.5 10 16.5C13.4606 16.5 16.5 13.6977 16.5 10C16.5 6.30225 13.4606 3.5 10 3.5ZM2 10C2 5.63253 5.50901 2 10 2C14.491 2 18 5.60956 18 10C18 14.3904 14.473 18 10 18C5.52701 18 2 14.3675 2 10ZM9.25 6.875C9.25 6.46079 9.58579 6.125 10 6.125H10.0063C10.4205 6.125 10.7563 6.46079 10.7563 6.875V6.88125C10.7563 7.29546 10.4205 7.63125 10.0063 7.63125H10C9.58579 7.63125 9.25 7.29546 9.25 6.88125V6.875ZM9.51124 10.1127C9.19095 10.172 8.85714 10.0163 8.70418 9.71041C8.51894 9.33993 8.66911 8.88942 9.03959 8.70418L9.07416 8.68689C10.1249 8.16153 11.3079 9.11056 11.023 10.2502L10.4888 12.3873C10.809 12.328 11.1429 12.4837 11.2958 12.7896C11.4811 13.1601 11.3309 13.6106 10.9604 13.7958L10.9258 13.8131C9.87513 14.3385 8.69206 13.3894 8.97697 12.2498L9.51124 10.1127Z"
27
27
  fill={color}
28
28
  fillRule="evenodd"
29
29
  clipRule="evenodd"
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconLightSolid = 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-light-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="M15.5291 9.23881H12.324C12.0352 9.23881 11.8145 8.97311 11.8615 8.68347L13.0026 1.55748C13.0777 1.09072 12.5119 0.808262 12.1949 1.15295L4.12707 9.95452C3.84765 10.2609 4.05898 10.7612 4.46988 10.7612H7.67493C7.96374 10.7612 8.18446 11.0269 8.1375 11.3165L6.99636 18.4425C6.92122 18.9093 7.48709 19.1917 7.80408 18.847L15.8719 10.0455C16.1537 9.73909 15.94 9.23881 15.5291 9.23881Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconLightSolid.displayName = "IconLightSolid";
33
+
34
+ export default IconLightSolid;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconLogoutSolid = 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-logout-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="M3.62861 4.94858C3.24895 5.10045 3 5.46816 3 5.87706V17C3 17.5523 3.44772 18 4 18H10C10.2536 18 10.4851 17.9056 10.6614 17.7501H13C13.9665 17.7501 14.75 16.9666 14.75 16.0001V15.3334C14.75 14.9192 14.4142 14.5834 14 14.5834C13.5858 14.5834 13.25 14.9192 13.25 15.3334V16.0001C13.25 16.1381 13.1381 16.2501 13 16.2501H11V5.75006H13C13.1381 5.75006 13.25 5.86198 13.25 6.00006V6.66672C13.25 7.08094 13.5858 7.41672 14 7.41672C14.4142 7.41672 14.75 7.08094 14.75 6.66672V6.00006C14.75 5.03356 13.9665 4.25006 13 4.25006H11V3.47706C11 2.7696 10.2855 2.28584 9.62861 2.54858L3.62861 4.94858ZM9 12.0001C9.55228 12.0001 10 11.5523 10 11.0001C10 10.4478 9.55228 10.0001 9 10.0001C8.44772 10.0001 8 10.4478 8 11.0001C8 11.5523 8.44772 12.0001 9 12.0001ZM19.8821 10.7256C20.0393 10.8788 20.0393 11.1213 19.8821 11.2746L17.7258 13.3779C17.4625 13.6347 17 13.4598 17 13.1034V11.7501H13.75C13.3358 11.7501 13 11.4143 13 11.0001C13 10.5858 13.3358 10.2501 13.75 10.2501H17V8.89675C17 8.54036 17.4625 8.36544 17.7258 8.62224L19.8821 10.7256Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconLogoutSolid.displayName = "IconLogoutSolid";
35
+
36
+ export default IconLogoutSolid;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconNumberSortedOutline = 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-number-sorted-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="M3.60052 3.99158V7.38894C3.59856 7.49549 3.61641 7.60138 3.65301 7.70043C3.68961 7.79947 3.74422 7.88968 3.81366 7.96577C3.88311 8.04186 3.96597 8.10231 4.05742 8.14357C4.14887 8.18484 4.24706 8.20609 4.34624 8.20609C4.44543 8.20609 4.54362 8.18484 4.63507 8.14357C4.72651 8.10231 4.80938 8.04186 4.87882 7.96577C4.94826 7.88968 5.00288 7.79947 5.03948 7.70043C5.07608 7.60138 5.09393 7.49549 5.09197 7.38894V2.83893C5.09284 2.71021 5.06483 2.58317 5.01031 2.46856C4.95579 2.35394 4.87636 2.25513 4.77876 2.18049C4.68471 2.09682 4.57266 2.0398 4.45283 2.01461C4.333 1.98943 4.20921 1.99689 4.09275 2.03631L3.10944 2.48501C2.93984 2.56783 2.80523 2.71584 2.73209 2.89993C2.65895 3.08402 2.65257 3.29085 2.71422 3.47973C2.77587 3.66861 2.90107 3.82587 3.0652 3.92056C3.22915 4.01516 3.42009 4.04048 3.60052 3.99158ZM4.68994 16.3946H5.57001H5.57059C5.66975 16.3925 5.76831 16.4117 5.8605 16.451C5.95269 16.4903 6.03665 16.549 6.10747 16.6236C6.17829 16.6982 6.23455 16.7872 6.27296 16.8855C6.31137 16.9837 6.33115 17.0892 6.33115 17.1958C6.33115 17.3024 6.31137 17.4079 6.27296 17.5061C6.23455 17.6044 6.17829 17.6934 6.10747 17.768C6.03665 17.8426 5.95269 17.9013 5.8605 17.9406C5.76831 17.9799 5.66975 17.9991 5.57059 17.997H2.82598C2.6641 18.0121 2.50207 17.9699 2.36452 17.877C2.22698 17.7841 2.12144 17.6454 2.06396 17.4821C2.00648 17.3188 2.0002 17.1398 2.04608 16.9724C2.09196 16.8049 2.18748 16.6581 2.31813 16.5543L4.31715 14.5035C4.64512 14.1828 4.71973 13.8624 4.71973 13.6378C4.69166 13.5582 4.64309 13.4888 4.57969 13.4377C4.51629 13.3867 4.44068 13.3561 4.36169 13.3494C4.18777 13.3519 4.01873 13.4116 3.87739 13.5205C3.73605 13.6294 3.6292 13.7823 3.57128 13.9585C3.45636 14.1111 3.2933 14.2131 3.11303 14.2451C2.93277 14.2771 2.74784 14.2369 2.59333 14.1321C2.43882 14.0273 2.32547 13.8653 2.2748 13.6767C2.22412 13.4881 2.23965 13.2861 2.31842 13.1089C2.53558 12.69 2.86097 12.3475 3.25531 12.1229C3.64965 11.8982 4.09608 11.801 4.54071 11.843C4.90112 11.8861 5.24266 12.0386 5.52533 12.2826C5.80801 12.5267 6.02013 12.8522 6.13686 13.2211C6.24721 13.6816 6.22975 14.1668 6.08663 14.6167C5.94351 15.0667 5.68099 15.4619 5.33141 15.7535L4.68994 16.3946ZM8.63614 3.60152C8.63614 3.15916 8.89816 2.80056 9.22138 2.80056H17.4148C17.738 2.80056 18 3.15916 18 3.60152C18 4.04388 17.738 4.40249 17.4148 4.40249H9.22138C8.89816 4.40249 8.63614 4.04388 8.63614 3.60152ZM9.22138 12.634C8.89816 12.634 8.63614 12.9926 8.63614 13.435C8.63614 13.8774 8.89816 14.236 9.22138 14.236H17.4148C17.738 14.236 18 13.8774 18 13.435C18 12.9926 17.738 12.634 17.4148 12.634H9.22138ZM8.63614 6.56621C8.63614 6.25607 8.88756 6.00465 9.19769 6.00465H14.2401C14.5502 6.00465 14.8016 6.25607 14.8016 6.56621V7.04503C14.8016 7.35517 14.5502 7.60658 14.2401 7.60658H9.19769C8.88756 7.60658 8.63614 7.35517 8.63614 7.04503V6.56621ZM9.19769 15.8384C8.88756 15.8384 8.63614 16.0898 8.63614 16.3999V16.8788C8.63614 17.1889 8.88756 17.4403 9.19769 17.4403H14.2401C14.5502 17.4403 14.8016 17.1889 14.8016 16.8788V16.3999C14.8016 16.0898 14.5502 15.8384 14.2401 15.8384H9.19769Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconNumberSortedOutline.displayName = "IconNumberSortedOutline";
35
+
36
+ export default IconNumberSortedOutline;
@@ -21,39 +21,11 @@ export const IconQrCodeSolid = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M3.89792 4.59792C3.89792 4.21132 4.21132 3.89792 4.59792 3.89792H5.72208C6.10868 3.89792 6.42208 4.21132 6.42208 4.59792V5.72208C6.42208 6.10868 6.10868 6.42208 5.72208 6.42208H4.59792C4.21132 6.42208 3.89792 6.10868 3.89792 5.72208V4.59792Z"
25
- fill={color}
26
- />
27
- <path
28
- d="M3 1C1.89543 1 1 1.89543 1 3V7.32C1 8.42457 1.89543 9.32 3 9.32H7.32C8.42457 9.32 9.32 8.42457 9.32 7.32V3C9.32 1.89543 8.42457 1 7.32 1H3ZM3.13005 2.12994C2.57777 2.12994 2.13005 2.57765 2.13005 3.12994V7.19006C2.13005 7.74235 2.57777 8.19006 3.13005 8.19006H7.19017C7.74246 8.19006 8.19017 7.74235 8.19017 7.19006V3.12994C8.19017 2.57765 7.74246 2.12994 7.19017 2.12994H3.13005Z"
29
- fill={color}
30
- fillRule="evenodd"
31
- clipRule="evenodd"
32
- />
33
- <path
34
- d="M3.89792 14.278C3.89792 13.8914 4.21132 13.578 4.59792 13.578H5.72208C6.10868 13.578 6.42208 13.8914 6.42208 14.278V15.4021C6.42208 15.7887 6.10868 16.1021 5.72208 16.1021H4.59792C4.21132 16.1021 3.89792 15.7887 3.89792 15.4021V14.278Z"
35
- fill={color}
36
- />
37
- <path
38
- d="M3 10.6801C1.89543 10.6801 1 11.5755 1 12.6801V17.0001C1 18.1046 1.89543 19.0001 3 19.0001H7.32C8.42457 19.0001 9.32 18.1046 9.32 17.0001V12.6801C9.32 11.5755 8.42457 10.6801 7.32 10.6801H3ZM3.13005 11.81C2.57777 11.81 2.13005 12.2577 2.13005 12.81V16.8701C2.13005 17.4224 2.57777 17.8701 3.13005 17.8701H7.19017C7.74246 17.8701 8.19017 17.4224 8.19017 16.8701V12.81C8.19017 12.2577 7.74246 11.81 7.19017 11.81H3.13005Z"
24
+ d="M5.53549 4.28574C4.84514 4.28574 4.28549 4.84538 4.28549 5.53574V8.03574C4.28549 8.72609 4.84514 9.28574 5.53549 9.28574H8.03549C8.72585 9.28574 9.28549 8.72609 9.28549 8.03574V5.53574C9.28549 4.84538 8.72585 4.28574 8.03549 4.28574H5.53549ZM5.35692 5.53574C5.35692 5.43712 5.43687 5.35717 5.53549 5.35717H8.03549C8.13412 5.35717 8.21406 5.43712 8.21406 5.53574V8.03574C8.21406 8.13436 8.13412 8.21431 8.03549 8.21431H5.53549C5.43687 8.21431 5.35692 8.13436 5.35692 8.03574V5.53574ZM5.53549 10.7143C4.84514 10.7143 4.28549 11.274 4.28549 11.9643V14.4643C4.28549 15.1547 4.84514 15.7143 5.53549 15.7143H8.03549C8.72585 15.7143 9.28549 15.1547 9.28549 14.4643V11.9643C9.28549 11.274 8.72585 10.7143 8.03549 10.7143H5.53549ZM5.35692 11.9643C5.35692 11.8657 5.43687 11.7857 5.53549 11.7857H8.03549C8.13412 11.7857 8.21406 11.8657 8.21406 11.9643V14.4643C8.21406 14.5629 8.13412 14.6429 8.03549 14.6429H5.53549C5.43687 14.6429 5.35692 14.5629 5.35692 14.4643V11.9643ZM10.7141 5.53574C10.7141 4.84538 11.2737 4.28574 11.9641 4.28574H14.4641C15.1544 4.28574 15.7141 4.84538 15.7141 5.53574V8.03574C15.7141 8.72609 15.1544 9.28574 14.4641 9.28574H11.9641C11.2737 9.28574 10.7141 8.72609 10.7141 8.03574V5.53574ZM11.9641 5.35717C11.8654 5.35717 11.7855 5.43712 11.7855 5.53574V8.03574C11.7855 8.13436 11.8654 8.21431 11.9641 8.21431H14.4641C14.5627 8.21431 14.6426 8.13436 14.6426 8.03574V5.53574C14.6426 5.43712 14.5627 5.35717 14.4641 5.35717H11.9641ZM6.77852 6.07145C6.38403 6.07145 6.06423 6.39125 6.06423 6.78574V6.79288C6.06423 7.18737 6.38403 7.50717 6.77852 7.50717H6.78566C7.18015 7.50717 7.49995 7.18737 7.49995 6.79288V6.78574C7.49995 6.39125 7.18015 6.07145 6.78566 6.07145H6.77852ZM13.2071 6.07145C12.8126 6.07145 12.4928 6.39125 12.4928 6.78574V6.79288C12.4928 7.18737 12.8126 7.50717 13.2071 7.50717H13.2142C13.6087 7.50717 13.9285 7.18737 13.9285 6.79288V6.78574C13.9285 6.39125 13.6087 6.07145 13.2142 6.07145H13.2071ZM6.77852 12.5C6.38403 12.5 6.06423 12.8198 6.06423 13.2143V13.2215C6.06423 13.6159 6.38403 13.9357 6.77852 13.9357H6.78566C7.18015 13.9357 7.49995 13.6159 7.49995 13.2215V13.2143C7.49995 12.8198 7.18015 12.5 6.78566 12.5H6.77852ZM13.2071 12.5C12.8126 12.5 12.4928 12.8198 12.4928 13.2143V13.2215C12.4928 13.6159 12.8126 13.9357 13.2071 13.9357H13.2142C13.6087 13.9357 13.9285 13.6159 13.9285 13.2215V13.2143C13.9285 12.8198 13.6087 12.5 13.2142 12.5H13.2071ZM10.7071 11.4286C10.7071 11.0341 11.0269 10.7143 11.4214 10.7143H11.4285C11.823 10.7143 12.1428 11.0341 12.1428 11.4286V11.4357C12.1428 11.8302 11.823 12.15 11.4285 12.15H11.4214C11.0269 12.15 10.7071 11.8302 10.7071 11.4357V11.4286ZM14.9928 10.7143C14.5983 10.7143 14.2785 11.0341 14.2785 11.4286V11.4357C14.2785 11.8302 14.5983 12.15 14.9928 12.15H14.9999C15.3944 12.15 15.7142 11.8302 15.7142 11.4357V11.4286C15.7142 11.0341 15.3944 10.7143 14.9999 10.7143H14.9928ZM14.2785 15C14.2785 14.6055 14.5983 14.2857 14.9928 14.2857H14.9999C15.3944 14.2857 15.7142 14.6055 15.7142 15V15.0072C15.7142 15.4017 15.3944 15.7215 14.9999 15.7215H14.9928C14.5983 15.7215 14.2785 15.4017 14.2785 15.0072V15ZM11.4214 14.2857C11.0269 14.2857 10.7071 14.6055 10.7071 15V15.0072C10.7071 15.4017 11.0269 15.7215 11.4214 15.7215H11.4285C11.823 15.7215 12.1428 15.4017 12.1428 15.0072V15C12.1428 14.6055 11.823 14.2857 11.4285 14.2857H11.4214ZM1.6665 4.0477C1.6665 2.73274 2.73249 1.66675 4.04746 1.66675H5.53555C5.86429 1.66675 6.13079 1.93325 6.13079 2.26199 6.13079 2.59073 5.86429 2.85722 5.53555 2.85722H4.04746C3.38997 2.85722 2.85698 3.39022 2.85698 4.0477V5.5358C2.85698 5.86454 2.59048 6.13103 2.26174 6.13103 1.933 6.13103 1.6665 5.86454 1.6665 5.5358V4.0477ZM15.9522 2.85722H14.4641C14.1354 2.85722 13.8689 2.59073 13.8689 2.26199 13.8689 1.93325 14.1354 1.66675 14.4641 1.66675H15.9522C17.2672 1.66675 18.3332 2.73274 18.3332 4.0477V5.5358C18.3332 5.86454 18.0667 6.13103 17.7379 6.13103 17.4092 6.13103 17.1427 5.86454 17.1427 5.5358V4.0477C17.1427 3.39022 16.6097 2.85722 15.9522 2.85722ZM2.26174 13.8691C2.59048 13.8691 2.85698 14.1356 2.85698 14.4644V15.9525C2.85698 16.6099 3.38997 17.1429 4.04746 17.1429H5.53555C5.86429 17.1429 6.13079 17.4094 6.13079 17.7382 6.13079 18.0669 5.86429 18.3334 5.53555 18.3334H4.04746C2.73249 18.3334 1.6665 17.2674 1.6665 15.9525V14.4644C1.6665 14.1356 1.933 13.8691 2.26174 13.8691ZM17.1427 15.9525V14.4644C17.1427 14.1356 17.4092 13.8691 17.7379 13.8691 18.0667 13.8691 18.3332 14.1356 18.3332 14.4644V15.9525C18.3332 17.2674 17.2672 18.3334 15.9522 18.3334H14.4641C14.1354 18.3334 13.8689 18.0669 13.8689 17.7382 13.8689 17.4094 14.1354 17.1429 14.4641 17.1429H15.9522C16.6097 17.1429 17.1427 16.6099 17.1427 15.9525Z"
39
25
  fill={color}
40
26
  fillRule="evenodd"
41
27
  clipRule="evenodd"
42
28
  />
43
- <path
44
- d="M14.278 3.89792C13.8914 3.89792 13.578 4.21132 13.578 4.59792V5.72208C13.578 6.10868 13.8914 6.42208 14.278 6.42208H15.4021C15.7887 6.42208 16.1021 6.10868 16.1021 5.72208V4.59792C16.1021 4.21132 15.7887 3.89792 15.4021 3.89792H14.278Z"
45
- fill={color}
46
- />
47
- <path
48
- d="M10.6801 3C10.6801 1.89543 11.5755 1 12.6801 1H17.0001C18.1046 1 19.0001 1.89543 19.0001 3V7.32C19.0001 8.42457 18.1046 9.32 17.0001 9.32H12.6801C11.5755 9.32 10.6801 8.42457 10.6801 7.32V3ZM11.8101 3.12994C11.8101 2.57765 12.2578 2.12994 12.8101 2.12994H16.8702C17.4225 2.12994 17.8702 2.57765 17.8702 3.12994V7.19006C17.8702 7.74235 17.4225 8.19006 16.8702 8.19006H12.8101C12.2578 8.19006 11.8101 7.74235 11.8101 7.19006V3.12994Z"
49
- fill={color}
50
- fillRule="evenodd"
51
- clipRule="evenodd"
52
- />
53
- <path
54
- d="M11.7356 11.2271C11.4042 11.2271 11.1356 11.4957 11.1356 11.8271V12.3471C11.1356 12.6784 11.4042 12.9471 11.7356 12.9471H12.2556C12.587 12.9471 12.8556 12.6784 12.8556 12.3471V11.8271C12.8556 11.4957 12.587 11.2271 12.2556 11.2271H11.7356ZM16.9519 11.8271C16.9519 11.4957 17.2205 11.2271 17.5519 11.2271H18.0719C18.4033 11.2271 18.6719 11.4957 18.6719 11.8271V12.3471C18.6719 12.6784 18.4033 12.9471 18.0719 12.9471H17.5519C17.2205 12.9471 16.9519 12.6784 16.9519 12.3471V11.8271ZM14.0617 12.8777C13.7303 12.8777 13.4617 13.1463 13.4617 13.4777V15.2777C13.4617 15.6091 13.7303 15.8777 14.0617 15.8777H14.4617C14.793 15.8777 15.0617 15.6091 15.0617 15.2777V13.4777C15.0617 13.1463 14.793 12.8777 14.4617 12.8777H14.0617ZM11.1356 17.5435C11.1356 17.2121 11.4042 16.9435 11.7356 16.9435H12.2556C12.587 16.9435 12.8556 17.2121 12.8556 17.5435V18.0635C12.8556 18.3949 12.587 18.6635 12.2556 18.6635H11.7356C11.4042 18.6635 11.1356 18.3949 11.1356 18.0635V17.5435ZM18.1719 15.0387C18.448 15.0387 18.6719 15.2626 18.6719 15.5387V17.8635C18.6719 18.3053 18.3137 18.6635 17.8719 18.6635H15.5616C15.2855 18.6635 15.0616 18.4396 15.0616 18.1635V17.4435C15.0616 17.1673 15.2855 16.9435 15.5616 16.9435H16.9519V15.5387C16.9519 15.2626 17.1758 15.0387 17.4519 15.0387H18.1719Z"
55
- fill={color}
56
- />
57
29
  </svg>
58
30
  );
59
31
  }
@@ -23,7 +23,7 @@ export const IconQuestionMarkCircleOutline = forwardRef<
23
23
  ref={forwardedRef}
24
24
  >
25
25
  <path
26
- d="M10 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 6.27208 13.7279 3.25 10 3.25ZM1.75 10C1.75 5.44365 5.44365 1.75 10 1.75C14.5563 1.75 18.25 5.44365 18.25 10C18.25 14.5563 14.5563 18.25 10 18.25C5.44365 18.25 1.75 14.5563 1.75 10ZM11.2741 6.83014C10.5805 6.22329 9.41984 6.22329 8.7263 6.83014C8.41457 7.1029 7.94075 7.07131 7.66799 6.75958C7.39523 6.44785 7.42682 5.97403 7.73854 5.70127C8.99762 4.59958 11.0028 4.59958 12.2618 5.70127C13.5796 6.85435 13.5796 8.77065 12.2618 9.92373C12.0392 10.1186 11.7941 10.278 11.5362 10.4028C10.9842 10.67 10.7502 11.0102 10.7502 11.25V11.875C10.7502 12.2892 10.4144 12.625 10.0002 12.625C9.58598 12.625 9.25019 12.2892 9.25019 11.875V11.25C9.25019 10.109 10.1919 9.38695 10.8827 9.05262C11.0253 8.98362 11.1569 8.8974 11.2741 8.79486C11.9089 8.2394 11.9089 7.3856 11.2741 6.83014ZM9.25 14.375C9.25 13.9608 9.58579 13.625 10 13.625H10.0063C10.4205 13.625 10.7563 13.9608 10.7563 14.375V14.3813C10.7563 14.7955 10.4205 15.1313 10.0063 15.1313H10C9.58579 15.1313 9.25 14.7955 9.25 14.3813V14.375Z"
26
+ d="M10 3.5C6.34865 3.5 3.5 6.56367 3.5 10C3.5 13.4363 6.28799 16.5 10 16.5C13.712 16.5 16.5 13.5273 16.5 10C16.5 6.47269 13.6514 3.5 10 3.5ZM2 10C2 5.44156 5.77243 2 10 2C14.2276 2 18 5.41123 18 10C18 14.5888 14.3186 18 10 18C5.68144 18 2 14.5584 2 10ZM11.2741 7.16166C10.5805 6.55481 9.41984 6.55481 8.7263 7.16166C8.41457 7.43442 7.94075 7.40283 7.66799 7.0911C7.39523 6.77938 7.42682 6.30555 7.73854 6.03279C8.99762 4.9311 11.0028 4.9311 12.2618 6.03279C13.5796 7.18587 13.5796 9.10217 12.2618 10.2552C12.0392 10.4501 11.7941 10.6095 11.5362 10.7343C10.9842 11.0015 10.7502 11.3418 10.7502 11.5815V12.0099C10.7502 12.4242 10.4144 12.7599 10.0002 12.7599C9.58598 12.7599 9.25019 12.4242 9.25019 12.0099V11.5815C9.25019 10.4406 10.1919 9.71847 10.8827 9.38414C11.0253 9.31514 11.1569 9.22892 11.2741 9.12638C11.9089 8.57092 11.9089 7.71712 11.2741 7.16166ZM9.25 14.2155C9.25 13.8013 9.58579 13.4655 10 13.4655H10.0063C10.4205 13.4655 10.7563 13.8013 10.7563 14.2155V14.2217C10.7563 14.6359 10.4205 14.9717 10.0063 14.9717H10C9.58579 14.9717 9.25 14.6359 9.25 14.2217V14.2155Z"
27
27
  fill={color}
28
28
  fillRule="evenodd"
29
29
  clipRule="evenodd"
@@ -0,0 +1,31 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconRadioSolid = 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-radio-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
+ <circle cx="10" cy="10" r="3.75" fill={color} />
24
+ </svg>
25
+ );
26
+ }
27
+ );
28
+
29
+ IconRadioSolid.displayName = "IconRadioSolid";
30
+
31
+ export default IconRadioSolid;
@@ -23,11 +23,11 @@ export const IconRotateRightRectangleOutline = forwardRef<
23
23
  ref={forwardedRef}
24
24
  >
25
25
  <path
26
- d="M4.82449 5.57481C4.54994 5.26466 4.57881 4.79066 4.88897 4.51611L5.83227 3.6811C5.09685 3.6471 4.49143 3.68963 3.97827 3.928C3.42925 4.18303 2.86484 4.72417 2.4352 6.00936C2.30388 6.4022 1.87895 6.6142 1.48611 6.48288C1.09327 6.35155 0.881265 5.92663 1.01259 5.53378C1.53409 3.97378 2.32507 3.04201 3.34634 2.56761C4.15712 2.19099 5.03078 2.14619 5.82497 2.17891L5.08239 1.34002C4.80784 1.02986 4.83671 0.555865 5.14686 0.281318C5.45702 0.00677009 5.93101 0.0356362 6.20556 0.345792L8.19401 2.59214C8.46856 2.90229 8.43969 3.37629 8.12954 3.65084L5.88319 5.63929C5.57304 5.91383 5.09904 5.88497 4.82449 5.57481Z"
26
+ d="M4.82449 5.57469C4.54994 5.26453 4.57881 4.79054 4.88897 4.51599L5.83227 3.68098C5.09685 3.64698 4.49143 3.68951 3.97827 3.92788C3.42925 4.18291 2.86484 4.72405 2.4352 6.00923C2.30388 6.40208 1.87895 6.61408 1.48611 6.48275C1.09327 6.35143 0.881265 5.92651 1.01259 5.53366C1.53409 3.97366 2.32507 3.04189 3.34634 2.56749C4.15712 2.19086 5.03078 2.14606 5.82497 2.17879L5.08239 1.33989C4.80784 1.02974 4.83671 0.555743 5.14686 0.281196C5.45702 0.00664802 5.93101 0.0355141 6.20556 0.34567L8.19401 2.59202C8.46856 2.90217 8.43969 3.37617 8.12954 3.65071L5.88319 5.63916C5.57304 5.91371 5.09904 5.88484 4.82449 5.57469Z"
27
27
  fill={color}
28
28
  />
29
29
  <path
30
- d="M4.99998 8.00005C4.99998 6.89548 5.89541 6.00005 6.99998 6.00005H15C16.1045 6.00005 17 6.89548 17 8.00005V16C17 17.1046 16.1045 18 15 18H6.99998C5.89541 18 4.99998 17.1046 4.99998 16V8.00005ZM6.99998 7.50005H15C15.2761 7.50005 15.5 7.7239 15.5 8.00005V16C15.5 16.2762 15.2761 16.5 15 16.5H6.99998C6.72384 16.5 6.49998 16.2762 6.49998 16V8.00005C6.49998 7.7239 6.72384 7.50005 6.99998 7.50005Z"
30
+ d="M4.99998 7.99992C4.99998 6.89535 5.89541 5.99992 6.99998 5.99992H15C16.1045 5.99992 17 6.89535 17 7.99992V15.9999C17 17.1045 16.1045 17.9999 15 17.9999H6.99998C5.89541 17.9999 4.99998 17.1045 4.99998 15.9999V7.99992ZM6.99998 7.49992H15C15.2761 7.49992 15.5 7.72378 15.5 7.99992V15.9999C15.5 16.2761 15.2761 16.4999 15 16.4999H6.99998C6.72384 16.4999 6.49998 16.2761 6.49998 15.9999V7.99992C6.49998 7.72378 6.72384 7.49992 6.99998 7.49992Z"
31
31
  fill={color}
32
32
  fillRule="evenodd"
33
33
  clipRule="evenodd"
@@ -0,0 +1,42 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconStoreSolid = 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-store-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="M5.88092 3C5.10304 3 4.41243 3.40062 4.16644 3.99458L2.66042 7.63094C2.63392 7.69492 2.61325 7.75904 2.5981 7.82299C2.53405 8.02494 2.5 8.23654 2.5 8.45455C2.5 9.86036 3.91596 11 5.66264 11C6.50208 11 7.26513 10.7368 7.83133 10.3073C8.39754 10.7368 9.16059 11 10 11C10.8394 11 11.6025 10.7368 12.1687 10.3073C12.7349 10.7368 13.4979 11 14.3374 11C16.084 11 17.5 9.86036 17.5 8.45455C17.5 8.23674 17.466 8.02532 17.4021 7.82354C17.3869 7.75941 17.3662 7.69511 17.3396 7.63094L15.8336 3.99458C15.5876 3.40063 14.897 3 14.1191 3H5.88092Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M4 12.0858V16C4 17.1046 4.89543 18 6 18H14C15.1046 18 16 17.1046 16 16V12.0858C15.3916 12.3549 14.7214 12.5 14.0482 12.5C13.3296 12.5 12.6393 12.3448 12.0241 12.0601C11.4089 12.3448 10.7186 12.5 10 12.5C9.28142 12.5 8.59108 12.3448 7.97591 12.0601C7.36074 12.3448 6.67039 12.5 5.9518 12.5C5.27859 12.5 4.60836 12.3549 4 12.0858ZM15.9163 10.4255C15.6694 9.60095 14.9049 9 14 9H6C5.09511 9 4.33058 9.60095 4.08374 10.4255C4.59258 10.7846 5.24302 11 5.9518 11C6.73527 11 7.44745 10.7368 7.97591 10.3073C8.50437 10.7368 9.21655 11 10 11C10.7835 11 11.4957 10.7368 12.0241 10.3073C12.5526 10.7368 13.2647 11 14.0482 11C14.757 11 15.4074 10.7846 15.9163 10.4255Z"
31
+ fill={color}
32
+ fillRule="evenodd"
33
+ clipRule="evenodd"
34
+ />
35
+ </svg>
36
+ );
37
+ }
38
+ );
39
+
40
+ IconStoreSolid.displayName = "IconStoreSolid";
41
+
42
+ export default IconStoreSolid;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconTextOutline = 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-text-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.7 4.07695C15.7 3.64791 15.3314 3.30011 14.8569 3.30011L5.05392 3.30005C4.5795 3.30005 4.3 3.64786 4.3 4.07689V5.30987C4.3 5.42033 4.38955 5.50987 4.50001 5.50987L5.51256 5.50983C5.62301 5.50982 5.71255 5.42028 5.71255 5.30983V5.1214C5.71255 4.90688 5.90485 4.73298 6.14206 4.73298H9.00064C9.1111 4.73298 9.20064 4.82252 9.20064 4.93298V15.0311C9.20064 15.1416 9.1111 15.2311 9.00064 15.2311H7.39092C7.28047 15.2311 7.19092 15.3207 7.19092 15.4311V16.3116C7.19092 16.5261 7.38322 16.7 7.62043 16.7H12.3066C12.5438 16.7 12.7361 16.5261 12.7361 16.3116V15.4311C12.7361 15.3207 12.6466 15.2311 12.5361 15.2311H11.0193C10.9084 15.2311 10.8187 15.141 10.8193 15.0302L10.8657 4.93206C10.8662 4.82196 10.9556 4.73298 11.0657 4.73298H13.8732C14.1104 4.73298 14.3027 4.90688 14.3027 5.1214V5.30984C14.3027 5.42029 14.3923 5.50983 14.5027 5.50984L15.5 5.50992C15.6104 5.50993 15.7 5.42038 15.7 5.30992V4.07695Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconTextOutline.displayName = "IconTextOutline";
35
+
36
+ export default IconTextOutline;
@@ -0,0 +1,40 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconToolAlertOutline = 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-alert-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="M10 6.41931C10.4142 6.41931 10.75 6.75509 10.75 7.16931V9.9746C10.75 10.3888 10.4142 10.7246 10 10.7246 9.58579 10.7246 9.25 10.3888 9.25 9.9746V7.16931C9.25 6.75509 9.58579 6.41931 10 6.41931ZM10 13.6424C10.4845 13.6424 10.8772 13.2497 10.8772 12.7652 10.8772 12.2808 10.4845 11.888 10 11.888 9.51554 11.888 9.1228 12.2808 9.1228 12.7652 9.1228 13.2497 9.51554 13.6424 10 13.6424Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M1.75 6C1.75001 4.48122 2.98122 3.25 4.5 3.25H15.5C17.0188 3.25 18.25 4.48122 18.25 6L18.25 14C18.25 15.5188 17.0188 16.75 15.5 16.75H4.5C2.98122 16.75 1.75 15.5188 1.75 14L1.75 6ZM4.5 4.75C3.80965 4.75 3.25 5.30964 3.25 6L3.25 14C3.25 14.6904 3.80964 15.25 4.5 15.25H15.5C16.1904 15.25 16.75 14.6904 16.75 14L16.75 6C16.75 5.30964 16.1904 4.75 15.5 4.75H4.5Z"
29
+ fill={color}
30
+ fillRule="evenodd"
31
+ clipRule="evenodd"
32
+ />
33
+ </svg>
34
+ );
35
+ }
36
+ );
37
+
38
+ IconToolAlertOutline.displayName = "IconToolAlertOutline";
39
+
40
+ export default IconToolAlertOutline;