@sunzi/icon 1.0.21 → 1.0.22

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 (42) hide show
  1. package/dist/customeow/index.es.js +1 -1
  2. package/dist/customeow/index.es.js.map +1 -1
  3. package/manifest.json +31 -191
  4. package/package.json +1 -1
  5. package/src/customeow/default/icon-arrow-left-caret-triangle-solid.tsx +37 -0
  6. package/src/customeow/default/icon-arrow-right-caret-triangle-solid.tsx +38 -0
  7. package/src/customeow/default/icon-calendar-clock-solid.tsx +40 -0
  8. package/src/customeow/default/icon-check-circle-outline.tsx +36 -0
  9. package/src/customeow/default/icon-close-circle-outline.tsx +1 -1
  10. package/src/customeow/default/icon-ellipsis-more-vertical-outline.tsx +35 -0
  11. package/src/customeow/default/icon-empty-solid.tsx +34 -0
  12. package/src/customeow/default/icon-eye-slash-solid.tsx +40 -0
  13. package/src/customeow/default/icon-file-image-outline.tsx +40 -0
  14. package/src/customeow/default/icon-file-pdf-outline.tsx +42 -0
  15. package/src/customeow/default/icon-file-save-outline.tsx +36 -0
  16. package/src/customeow/default/icon-font-solid.tsx +2 -2
  17. package/src/customeow/default/icon-image-photo-error-solid.tsx +44 -0
  18. package/src/customeow/default/icon-information-circle-outline.tsx +37 -0
  19. package/src/customeow/default/icon-map-outline.tsx +1 -1
  20. package/src/customeow/default/icon-menu-fold-outline.tsx +38 -0
  21. package/src/customeow/default/icon-menu-un-fold-outline.tsx +34 -0
  22. package/src/customeow/default/icon-oblique-outline.tsx +36 -0
  23. package/src/customeow/default/icon-question-mark-circle-outline.tsx +37 -0
  24. package/src/customeow/index.json +19 -3
  25. package/src/customeow/index.tsx +19 -3
  26. package/types/customeow/default/icon-arrow-left-caret-triangle-solid.d.ts +3 -0
  27. package/types/customeow/default/icon-arrow-right-caret-triangle-solid.d.ts +3 -0
  28. package/types/customeow/default/icon-calendar-clock-solid.d.ts +3 -0
  29. package/types/customeow/default/icon-check-circle-outline.d.ts +3 -0
  30. package/types/customeow/default/icon-ellipsis-more-vertical-outline.d.ts +3 -0
  31. package/types/customeow/default/icon-empty-solid.d.ts +3 -0
  32. package/types/customeow/default/icon-eye-slash-solid.d.ts +3 -0
  33. package/types/customeow/default/icon-file-image-outline.d.ts +3 -0
  34. package/types/customeow/default/icon-file-pdf-outline.d.ts +3 -0
  35. package/types/customeow/default/icon-file-save-outline.d.ts +3 -0
  36. package/types/customeow/default/icon-image-photo-error-solid.d.ts +3 -0
  37. package/types/customeow/default/icon-information-circle-outline.d.ts +3 -0
  38. package/types/customeow/default/icon-menu-fold-outline.d.ts +3 -0
  39. package/types/customeow/default/icon-menu-un-fold-outline.d.ts +3 -0
  40. package/types/customeow/default/icon-oblique-outline.d.ts +3 -0
  41. package/types/customeow/default/icon-question-mark-circle-outline.d.ts +3 -0
  42. package/types/customeow/index.d.ts +19 -3
@@ -0,0 +1,42 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconFilePdfOutline = 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-file-pdf-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.79381 8.71603C9.47466 8.71603 8.88495 8.80782 8.62879 9.39684C8.41172 9.89597 8.57705 10.4835 8.84996 11.0474C8.94092 11.2481 9.07868 11.5112 9.24091 11.8C9.17545 12.0137 9.09796 12.2483 9.00665 12.5056C8.9477 12.6717 8.89064 12.8256 8.8355 12.968C8.1758 13.1811 7.72323 13.4215 7.4304 13.6949C7.19506 13.9147 7.03971 14.1778 6.9981 14.475C6.95757 14.7644 7.03692 15.0018 7.11125 15.1542L7.12518 15.1827L7.14172 15.2098C7.22365 15.3442 7.38881 15.5816 7.66664 15.7235C8.00924 15.8985 8.39928 15.8686 8.74267 15.6465C9.0373 15.456 9.28713 15.1345 9.51786 14.7283C9.62073 14.5471 9.72654 14.3369 9.83568 14.0942C9.9585 14.0637 10.0907 14.0329 10.233 14.0022C10.3672 13.9733 10.4923 13.9493 10.6088 13.9298C10.9515 14.363 11.3257 14.666 11.7054 14.8327C12.0778 14.9963 12.526 15.0534 12.9166 14.8533C13.1228 14.7477 13.2442 14.5772 13.3104 14.4454C13.3817 14.3035 13.4207 14.1454 13.4281 13.9864C13.4435 13.6575 13.3247 13.2962 13.0268 13.011C12.6454 12.6458 12.0572 12.4745 11.2566 12.5004C11.0773 12.2294 10.883 11.9191 10.702 11.616C10.8779 10.9283 10.9409 10.3993 10.9139 9.99406C10.8925 9.67126 10.8093 9.35305 10.6061 9.10346C10.3838 8.83049 10.0799 8.71603 9.79381 8.71603Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M2.96289 2.8125C2.96289 1.88052 3.71841 1.125 4.65039 1.125H8.71289C13.2692 1.125 16.9629 4.81865 16.9629 9.375V17.1875C16.9629 18.1195 16.2074 18.875 15.2754 18.875H4.65039C3.71841 18.875 2.96289 18.1195 2.96289 17.1875V2.8125ZM4.46289 2.8125C4.46289 2.70895 4.54684 2.625 4.65039 2.625H8.40039C9.53948 2.625 10.4629 3.54841 10.4629 4.6875V5.9375C10.4629 6.86948 11.2184 7.625 12.1504 7.625H13.4004C14.5395 7.625 15.4629 8.54841 15.4629 9.6875V17.1875C15.4629 17.2911 15.3789 17.375 15.2754 17.375H4.65039C4.54684 17.375 4.46289 17.2911 4.46289 17.1875V2.8125ZM11.9629 4.6875C11.9629 4.20096 11.8654 3.73721 11.6888 3.31472C13.0267 3.97295 14.1149 5.06119 14.7732 6.39911C14.3507 6.22253 13.8869 6.125 13.4004 6.125H12.1504C12.0468 6.125 11.9629 6.04105 11.9629 5.9375V4.6875Z"
31
+ fill={color}
32
+ fillRule="evenodd"
33
+ clipRule="evenodd"
34
+ />
35
+ </svg>
36
+ );
37
+ }
38
+ );
39
+
40
+ IconFilePdfOutline.displayName = "IconFilePdfOutline";
41
+
42
+ export default IconFilePdfOutline;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconFileSaveOutline = 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-file-save-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="M5.46289 2.25C4.22025 2.25 3.21289 3.25736 3.21289 4.5V15.5C3.21289 16.7426 4.22025 17.75 5.46289 17.75H14.4629C15.7055 17.75 16.7129 16.7426 16.7129 15.5V7.43737C16.7129 6.95066 16.5551 6.47707 16.2631 6.08765L14.0608 3.15028C13.6359 2.58355 12.9689 2.25 12.2606 2.25H5.46289ZM4.71289 4.5C4.71289 4.08579 5.04868 3.75 5.46289 3.75H6.41984V7.46899C6.41984 8.43549 7.20334 9.21899 8.16984 9.21899H9.75594C10.7224 9.21899 11.5059 8.43549 11.5059 7.46899V3.75H12.2606C12.4967 3.75 12.719 3.86118 12.8607 4.05009L15.063 6.98746C15.1603 7.11727 15.2129 7.27513 15.2129 7.43737V15.5C15.2129 15.9142 14.8771 16.25 14.4629 16.25H5.46289C5.04868 16.25 4.71289 15.9142 4.71289 15.5V4.5ZM10.0059 3.75H7.91984V7.46899C7.91984 7.60706 8.03177 7.71899 8.16984 7.71899H9.75594C9.89401 7.71899 10.0059 7.60707 10.0059 7.46899V3.75Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconFileSaveOutline.displayName = "IconFileSaveOutline";
35
+
36
+ export default IconFileSaveOutline;
@@ -28,13 +28,13 @@ export const IconFontSolid = forwardRef<SVGSVGElement, IconProps>(
28
28
  clipRule="evenodd"
29
29
  />
30
30
  <path
31
- d="M8.89506 8.7914L9.459 10.1365C9.54453 10.3405 9.74655 10.5065 9.9643 10.4727C10.6521 10.366 10.4565 9.76145 10.4565 9.76145L8.48219 4.98132C8.29138 4.5271 7.64812 4.5271 7.4573 4.98133L5.4677 9.71748C5.31651 10.0774 5.58158 10.4727 5.96917 10.4727C6.18754 10.4727 6.38524 10.3419 6.47039 10.1399L7.03873 8.79135C7.04235 8.78275 7.0507 8.77717 7.05995 8.77717H8.87382C8.88308 8.77717 8.89144 8.78277 8.89506 8.7914ZM12.4486 6.03051C11.4891 5.97717 10.7943 6.65283 10.6165 7.1329C10.5128 7.44598 10.6936 7.63308 10.901 7.73744C11.1084 7.8418 11.4522 7.80856 11.6122 7.55964L11.6251 7.53954C11.782 7.29495 11.9629 7.01285 12.4301 7.044C12.9636 7.07956 13.2125 7.45295 13.2125 7.63076C12.7978 7.63076 12.2523 7.63414 11.5944 7.79078C10.9366 7.94742 10.4743 8.4456 10.4743 9.15093C10.4743 9.55397 10.7232 9.90119 10.9899 10.12C11.2388 10.3243 11.683 10.4756 12.0923 10.4756C12.1812 10.4756 12.8743 10.4608 13.2836 10.2089C13.2836 10.229 13.4436 10.4955 13.7815 10.4756C14.1193 10.4558 14.3149 10.1713 14.3149 9.97779V7.79065C14.3149 6.72547 13.4081 6.08385 12.4486 6.03051ZM7.51112 7.75331H8.425C8.44152 7.75331 8.45269 7.73626 8.44624 7.72088L8.05404 6.7854C8.02227 6.70963 7.91612 6.70953 7.88421 6.78524L7.48991 7.72084C7.48342 7.73622 7.49458 7.75331 7.51112 7.75331ZM12.3449 9.43883C12.0426 9.49233 11.7011 9.46215 11.6122 9.19544C11.5233 8.92874 11.8078 8.80427 12.0034 8.75093C12.199 8.69759 12.7854 8.64425 13.1947 8.64425C13.1947 8.85297 13.0169 9.31991 12.3449 9.43883Z"
31
+ d="M8.89506 8.79143L9.459 10.1365C9.54453 10.3405 9.74655 10.5065 9.9643 10.4727C10.6521 10.366 10.4565 9.76148 10.4565 9.76148L8.48219 4.98136C8.29138 4.52713 7.64812 4.52713 7.4573 4.98136L5.4677 9.71751C5.31651 10.0774 5.58158 10.4727 5.96917 10.4727C6.18754 10.4727 6.38524 10.3419 6.47039 10.1399L7.03873 8.79138C7.04235 8.78278 7.0507 8.7772 7.05995 8.7772H8.87382C8.88308 8.7772 8.89144 8.7828 8.89506 8.79143ZM12.4486 6.03054C11.4891 5.9772 10.7943 6.65286 10.6165 7.13293C10.5128 7.44601 10.6936 7.63311 10.901 7.73747C11.1084 7.84183 11.4522 7.80859 11.6122 7.55967L11.6251 7.53957C11.782 7.29498 11.9629 7.01288 12.4301 7.04403C12.9636 7.07959 13.2125 7.45298 13.2125 7.63079C12.7978 7.63079 12.2523 7.63417 11.5944 7.79081C10.9366 7.94745 10.4743 8.44563 10.4743 9.15096C10.4743 9.554 10.7232 9.90122 10.9899 10.1201C11.2388 10.3243 11.683 10.4757 12.0923 10.4757C12.1812 10.4757 12.8743 10.4609 13.2836 10.209C13.2836 10.229 13.4436 10.4955 13.7815 10.4757C14.1193 10.4558 14.3149 10.1714 14.3149 9.97782V7.79068C14.3149 6.7255 13.4081 6.08388 12.4486 6.03054ZM7.51112 7.75334H8.425C8.44152 7.75334 8.45269 7.73629 8.44624 7.72091L8.05404 6.78543C8.02227 6.70966 7.91612 6.70956 7.88421 6.78527L7.48991 7.72087C7.48342 7.73625 7.49458 7.75334 7.51112 7.75334ZM12.3449 9.43886C12.0426 9.49236 11.7011 9.46218 11.6122 9.19547C11.5233 8.92877 11.8078 8.8043 12.0034 8.75096C12.199 8.69762 12.7854 8.64428 13.1947 8.64428C13.1947 8.853 13.0169 9.31994 12.3449 9.43886Z"
32
32
  fill={color}
33
33
  fillRule="evenodd"
34
34
  clipRule="evenodd"
35
35
  />
36
36
  <path
37
- d="M7.38703 14.256H6.57017V15.1013C6.57017 15.2905 6.41681 15.4438 6.22762 15.4438 6.03843 15.4438 5.88507 15.2905 5.88507 15.1013V13.0115C5.88507 12.7249 6.11738 12.4926 6.40396 12.4926H7.59378C7.73931 12.4926 7.85728 12.6105 7.85728 12.7561 7.85728 12.9016 7.73931 13.0196 7.59378 13.0196H6.57017V13.729H7.38703C7.53256 13.729 7.65053 13.847 7.65053 13.9925 7.65053 14.138 7.53256 14.256 7.38703 14.256ZM8.98102 13.2101C9.31614 13.2101 9.57694 13.3138 9.76342 13.5212 9.9499 13.7286 10.0431 13.9972 10.0431 14.3269V14.3695C10.0431 14.7006 9.9499 14.9695 9.76342 15.1762 9.57694 15.383 9.3175 15.4864 8.98508 15.4864 8.64861 15.4864 8.38713 15.383 8.20065 15.1762 8.01417 14.9695 7.92093 14.7006 7.92093 14.3695V14.3269C7.92093 13.9972 8.01417 13.7286 8.20065 13.5212 8.38713 13.3138 8.64725 13.2101 8.98102 13.2101ZM8.98102 13.7371C8.84589 13.7371 8.74961 13.7911 8.69218 13.8992 8.63475 14.0074 8.60604 14.1499 8.60604 14.3269V14.3695C8.60604 14.5533 8.63475 14.6975 8.69218 14.8023 8.74961 14.907 8.84725 14.9594 8.98508 14.9594 9.11886 14.9594 9.2148 14.9067 9.2729 14.8012 9.32132 14.7134 9.34957 14.5988 9.35764 14.4575L9.36006 14.3269C9.36006 14.1486 9.33101 14.0057 9.2729 13.8982 9.2148 13.7908 9.1175 13.7371 8.98102 13.7371ZM10.9936 13.5077 11.0019 13.5587C11.0735 13.4493 11.1621 13.3638 11.2675 13.3023 11.3729 13.2408 11.4904 13.2101 11.6201 13.2101 11.835 13.2101 12.0029 13.283 12.1238 13.429 12.2448 13.5749 12.3052 13.8067 12.3052 14.1242V15.1012C12.3052 15.2904 12.1519 15.4438 11.9627 15.4438 11.7735 15.4438 11.6201 15.2904 11.6201 15.1012V14.1222C11.6201 13.983 11.5978 13.884 11.5533 13.8253 11.5087 13.7665 11.4438 13.7371 11.3587 13.7371 11.2857 13.7371 11.2202 13.7499 11.1621 13.7756 11.1039 13.8013 11.0553 13.8378 11.0161 13.8851V15.1023C11.0161 15.2909 10.8632 15.4438 10.6746 15.4438 10.4859 15.4438 10.333 15.2909 10.333 15.1023V13.5719C10.333 13.4106 10.4519 13.277 10.6068 13.2541L10.6664 13.2506C10.8237 13.2506 10.9576 13.359 10.9936 13.5077ZM13.4644 13.048V13.2507H13.5739C13.7049 13.2507 13.8111 13.3568 13.8111 13.4878 13.8111 13.6188 13.7049 13.725 13.5739 13.725H13.4644V14.7304C13.4644 14.8087 13.4803 14.8651 13.5121 14.8996 13.5829 14.9764 13.6347 14.9624 13.805 14.931 13.9753 14.8996 14.0259 15.306 13.8516 15.4378 13.6773 15.5695 13.1525 15.5096 12.9547 15.306 12.8378 15.1857 12.7793 14.9952 12.7793 14.7344V13.725H12.7104C12.5794 13.725 12.4733 13.6188 12.4733 13.4878 12.4733 13.3568 12.5794 13.2507 12.7104 13.2507H12.7793V13.048C12.7793 12.8588 12.9327 12.7054 13.1219 12.7054 13.3111 12.7054 13.4644 12.8588 13.4644 13.048Z"
37
+ d="M7.38703 14.256H6.57017V15.1013C6.57017 15.2905 6.41681 15.4439 6.22762 15.4439 6.03843 15.4439 5.88507 15.2905 5.88507 15.1013V13.0115C5.88507 12.7249 6.11738 12.4926 6.40396 12.4926H7.59378C7.73931 12.4926 7.85728 12.6106 7.85728 12.7561 7.85728 12.9016 7.73931 13.0196 7.59378 13.0196H6.57017V13.729H7.38703C7.53256 13.729 7.65053 13.847 7.65053 13.9925 7.65053 14.1381 7.53256 14.256 7.38703 14.256ZM8.98102 13.2101C9.31614 13.2101 9.57694 13.3138 9.76342 13.5212 9.9499 13.7287 10.0431 13.9972 10.0431 14.327V14.3695C10.0431 14.7006 9.9499 14.9695 9.76342 15.1763 9.57694 15.383 9.3175 15.4864 8.98508 15.4864 8.64861 15.4864 8.38713 15.383 8.20065 15.1763 8.01417 14.9695 7.92093 14.7006 7.92093 14.3695V14.327C7.92093 13.9972 8.01417 13.7287 8.20065 13.5212 8.38713 13.3138 8.64725 13.2101 8.98102 13.2101ZM8.98102 13.7371C8.84589 13.7371 8.74961 13.7912 8.69218 13.8993 8.63475 14.0074 8.60604 14.1499 8.60604 14.327V14.3695C8.60604 14.5533 8.63475 14.6976 8.69218 14.8023 8.74961 14.907 8.84725 14.9594 8.98508 14.9594 9.11886 14.9594 9.2148 14.9067 9.2729 14.8013 9.32132 14.7134 9.34957 14.5989 9.35764 14.4575L9.36006 14.327C9.36006 14.1486 9.33101 14.0057 9.2729 13.8983 9.2148 13.7908 9.1175 13.7371 8.98102 13.7371ZM10.9936 13.5078 11.0019 13.5587C11.0735 13.4493 11.1621 13.3638 11.2675 13.3023 11.3729 13.2409 11.4904 13.2101 11.6201 13.2101 11.835 13.2101 12.0029 13.2831 12.1238 13.429 12.2448 13.575 12.3052 13.8067 12.3052 14.1243V15.1013C12.3052 15.2905 12.1519 15.4438 11.9627 15.4438 11.7735 15.4438 11.6201 15.2905 11.6201 15.1013V14.1222C11.6201 13.9831 11.5978 13.8841 11.5533 13.8253 11.5087 13.7665 11.4438 13.7371 11.3587 13.7371 11.2857 13.7371 11.2202 13.75 11.1621 13.7756 11.1039 13.8013 11.0553 13.8378 11.0161 13.8851V15.1023C11.0161 15.2909 10.8632 15.4438 10.6746 15.4438 10.4859 15.4438 10.333 15.2909 10.333 15.1023V13.5719C10.333 13.4106 10.4519 13.2771 10.6068 13.2541L10.6664 13.2506C10.8237 13.2506 10.9576 13.3591 10.9936 13.5078ZM13.4644 13.048V13.2507H13.5739C13.7049 13.2507 13.8111 13.3569 13.8111 13.4879 13.8111 13.6188 13.7049 13.725 13.5739 13.725H13.4644V14.7304C13.4644 14.8088 13.4803 14.8652 13.5121 14.8996 13.5829 14.9765 13.6347 14.9625 13.805 14.9311 13.9753 14.8996 14.0259 15.306 13.8516 15.4378 13.6773 15.5695 13.1525 15.5096 12.9547 15.306 12.8378 15.1858 12.7793 14.9952 12.7793 14.7344V13.725H12.7104C12.5794 13.725 12.4733 13.6188 12.4733 13.4879 12.4733 13.3569 12.5794 13.2507 12.7104 13.2507H12.7793V13.048C12.7793 12.8588 12.9327 12.7054 13.1219 12.7054 13.3111 12.7054 13.4644 12.8588 13.4644 13.048Z"
38
38
  fill={color}
39
39
  />
40
40
  </svg>
@@ -0,0 +1,44 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconImagePhotoErrorSolid = 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-photo-error-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
+ <g
24
+ fill={color}
25
+ clipPath="url(#a)"
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ >
29
+ <path d="M1 5.25C1 4.65326 1.23705 4.08097 1.65901 3.65901C2.08097 3.23705 2.65326 3 3.25 3H16.75C17.0455 3 17.3381 3.0582 17.611 3.17127C17.884 3.28434 18.1321 3.45008 18.341 3.65901C18.5499 3.86794 18.7157 4.11598 18.8287 4.38896C18.9418 4.66194 19 4.95453 19 5.25V9.5H13.5C11.9944 9.5 10.6831 10.3318 10.0006 11.5609L6.53 8.091C6.38937 7.95055 6.19875 7.87166 6 7.87166C5.80125 7.87166 5.61063 7.95055 5.47 8.091L2.5 11.06V14.75C2.5 15.164 2.836 15.5 3.25 15.5H9.5V17H3.25C2.65326 17 2.08097 16.7629 1.65901 16.341C1.23705 15.919 1 15.3467 1 14.75V5.25ZM12 7C12 7.26522 11.8946 7.51957 11.7071 7.70711C11.5196 7.89464 11.2652 8 11 8C10.7348 8 10.4804 7.89464 10.2929 7.70711C10.1054 7.51957 10 7.26522 10 7C10 6.73478 10.1054 6.48043 10.2929 6.29289C10.4804 6.10536 10.7348 6 11 6C11.2652 6 11.5196 6.10536 11.7071 6.29289C11.8946 6.48043 12 6.73478 12 7Z" />
30
+ <path d="M18.1517 13.409C18.4445 13.1161 18.4445 12.6412 18.1517 12.3484C17.8588 12.0555 17.3839 12.0555 17.091 12.3484L15.5 13.9393L13.909 12.3484C13.6161 12.0555 13.1412 12.0555 12.8483 12.3484C12.5555 12.6412 12.5555 13.1161 12.8483 13.409L14.4393 15L12.8483 16.591C12.5555 16.8839 12.5555 17.3588 12.8483 17.6517C13.1412 17.9445 13.6161 17.9445 13.909 17.6517L15.5 16.0607L17.091 17.6517C17.3839 17.9445 17.8588 17.9445 18.1517 17.6517C18.4445 17.3588 18.4445 16.8839 18.1517 16.591L16.5607 15L18.1517 13.409Z" />
31
+ </g>
32
+ <defs>
33
+ <clipPath id="a">
34
+ <path fill={color} d="M0 0H20V20H0z" />
35
+ </clipPath>
36
+ </defs>
37
+ </svg>
38
+ );
39
+ }
40
+ );
41
+
42
+ IconImagePhotoErrorSolid.displayName = "IconImagePhotoErrorSolid";
43
+
44
+ export default IconImagePhotoErrorSolid;
@@ -0,0 +1,37 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconInformationCircleOutline = 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-outline`,
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="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"
27
+ fill={color}
28
+ fillRule="evenodd"
29
+ clipRule="evenodd"
30
+ />
31
+ </svg>
32
+ );
33
+ });
34
+
35
+ IconInformationCircleOutline.displayName = "IconInformationCircleOutline";
36
+
37
+ export default IconInformationCircleOutline;
@@ -21,7 +21,7 @@ export const IconMapOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M7.58385 3.38039C7.53107 3.354 7.46893 3.354 7.41615 3.38039L3.35365 5.41164C3.29013 5.4434 3.25 5.50833 3.25 5.57935V15.983C3.25 16.1224 3.39668 16.2131 3.52135 16.1507L6.74533 14.5387C7.2204 14.3012 7.7796 14.3012 8.25467 14.5387L12.4161 16.6195C12.4689 16.6459 12.5311 16.6459 12.5839 16.6195L16.6464 14.5882C16.7099 14.5565 16.75 14.4916 16.75 14.4205V4.01685C16.75 3.87746 16.6033 3.78681 16.4786 3.84914L13.2547 5.46113C12.7796 5.69867 12.2204 5.69867 11.7453 5.46113L7.58385 3.38039ZM6.74533 2.03875C7.22041 1.80121 7.7796 1.80121 8.25467 2.03875L12.4161 4.11949C12.4689 4.14588 12.5311 4.14588 12.5839 4.11949L15.8078 2.5075C16.9298 1.94649 18.25 2.76239 18.25 4.01685V14.4205C18.25 15.0597 17.8889 15.644 17.3172 15.9299L13.2547 17.9611C12.7796 18.1987 12.2204 18.1987 11.7453 17.9611L7.58385 15.8804C7.53107 15.854 7.46893 15.854 7.41615 15.8804L4.19217 17.4924C3.07015 18.0534 1.75 17.2375 1.75 15.983V5.57935C1.75 4.94017 2.11113 4.35585 2.68283 4.07L6.74533 2.03875ZM7.5 4.87494C7.91421 4.87494 8.25 5.21073 8.25 5.62494V12.4999C8.25 12.9142 7.91421 13.2499 7.5 13.2499C7.08579 13.2499 6.75 12.9142 6.75 12.4999V5.62494C6.75 5.21073 7.08579 4.87494 7.5 4.87494ZM12.5 6.74994C12.9142 6.74994 13.25 7.08573 13.25 7.49994V14.3749C13.25 14.7892 12.9142 15.1249 12.5 15.1249C12.0858 15.1249 11.75 14.7892 11.75 14.3749V7.49994C11.75 7.08573 12.0858 6.74994 12.5 6.74994Z"
24
+ d="M7.58385 3.38045C7.53107 3.35406 7.46893 3.35406 7.41615 3.38045L3.35365 5.4117C3.29013 5.44346 3.25 5.50839 3.25 5.57941V15.9831C3.25 16.1225 3.39668 16.2131 3.52135 16.1508L6.74533 14.5388C7.2204 14.3013 7.7796 14.3013 8.25467 14.5388L12.4161 16.6195C12.4689 16.6459 12.5311 16.6459 12.5839 16.6195L16.6464 14.5883C16.7099 14.5565 16.75 14.4916 16.75 14.4206V4.01691C16.75 3.87752 16.6033 3.78687 16.4786 3.8492L13.2547 5.46119C12.7796 5.69873 12.2204 5.69873 11.7453 5.46119L7.58385 3.38045ZM6.74533 2.03881C7.22041 1.80127 7.7796 1.80127 8.25467 2.03881L12.4161 4.11955C12.4689 4.14594 12.5311 4.14594 12.5839 4.11955L15.8078 2.50756C16.9298 1.94655 18.25 2.76245 18.25 4.01691V14.4206C18.25 15.0598 17.8889 15.6441 17.3172 15.9299L13.2547 17.9612C12.7796 18.1987 12.2204 18.1987 11.7453 17.9612L7.58385 15.8805C7.53107 15.8541 7.46893 15.8541 7.41615 15.8805L4.19217 17.4924C3.07015 18.0534 1.75 17.2376 1.75 15.9831V5.57941C1.75 4.94023 2.11113 4.35591 2.68283 4.07006L6.74533 2.03881ZM7.5 4.875C7.91421 4.875 8.25 5.21079 8.25 5.625V12.5C8.25 12.9142 7.91421 13.25 7.5 13.25C7.08579 13.25 6.75 12.9142 6.75 12.5V5.625C6.75 5.21079 7.08579 4.875 7.5 4.875ZM12.5 6.75C12.9142 6.75 13.25 7.08579 13.25 7.5V14.375C13.25 14.7892 12.9142 15.125 12.5 15.125C12.0858 15.125 11.75 14.7892 11.75 14.375V7.5C11.75 7.08579 12.0858 6.75 12.5 6.75Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
@@ -0,0 +1,38 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconMenuFoldOutline = 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-menu-fold-outline`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 328 24"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M2.75 6C2.33579 6 2 6.33579 2 6.75 2 7.16421 2.33579 7.5 2.75 7.5H17.25C17.6642 7.5 18 7.16421 18 6.75 18 6.33579 17.6642 6 17.25 6H2.75ZM9.5 11.25C9.08579 11.25 8.75 11.5858 8.75 12 8.75 12.4142 9.08579 12.75 9.5 12.75H17.25C17.6642 12.75 18 12.4142 18 12 18 11.5858 17.6642 11.25 17.25 11.25H9.5ZM2.75 16.5C2.33579 16.5 2 16.8358 2 17.25 2 17.6642 2.33579 18 2.75 18H17.25C17.6642 18 18 17.6642 18 17.25 18 16.8358 17.6642 16.5 17.25 16.5H2.75ZM5.04006 14.1502 2.36885 12.4203C2.00372 12.1838 2.00372 11.6495 2.36885 11.4131L5.04006 9.68313C5.43927 9.4246 5.96621 9.71113 5.96621 10.1867V13.6466C5.96621 14.1222 5.43927 14.4087 5.04006 14.1502Z"
25
+ fill={color}
26
+ />
27
+ <path
28
+ d="M41.0739 17V9.36364H42.2074V10.5568H42.3068C42.4659 10.1491 42.7228 9.83262 43.0774 9.60724C43.4321 9.37855 43.858 9.2642 44.3551 9.2642C44.8589 9.2642 45.2782 9.37855 45.6129 9.60724C45.951 9.83262 46.2145 10.1491 46.4034 10.5568H46.483C46.6785 10.1624 46.9718 9.84919 47.3629 9.61719C47.754 9.38187 48.223 9.2642 48.7699 9.2642C49.4527 9.2642 50.0111 9.47798 50.4453 9.90554C50.8795 10.3298 51.0966 10.991 51.0966 11.8892V17H49.9233V11.8892C49.9233 11.3258 49.7692 10.9231 49.4609 10.6811C49.1527 10.4392 48.7898 10.3182 48.3722 10.3182C47.8352 10.3182 47.4193 10.4806 47.1243 10.8054C46.8293 11.1269 46.6818 11.5346 46.6818 12.0284V17H45.4886V11.7699C45.4886 11.3357 45.3478 10.986 45.0661 10.7209C44.7843 10.4524 44.4214 10.3182 43.9773 10.3182C43.6723 10.3182 43.3873 10.3994 43.1222 10.5618C42.8603 10.7242 42.6482 10.9496 42.4858 11.2379C42.3267 11.523 42.2472 11.8527 42.2472 12.2273V17H41.0739ZM56.4435 17.1591C55.7077 17.1591 55.073 16.9967 54.5394 16.6719C54.0091 16.3438 53.5998 15.8864 53.3114 15.2997C53.0264 14.7098 52.8839 14.0237 52.8839 13.2415C52.8839 12.4593 53.0264 11.7699 53.3114 11.1733C53.5998 10.5734 54.0008 10.1061 54.5146 9.77131C55.0316 9.43324 55.6348 9.2642 56.3242 9.2642C56.7219 9.2642 57.1147 9.33049 57.5025 9.46307C57.8903 9.59564 58.2433 9.81108 58.5614 10.1094C58.8796 10.4044 59.1332 10.7955 59.3221 11.2827C59.511 11.7699 59.6055 12.3698 59.6055 13.0824V13.5795H53.7191V12.5653H58.4123C58.4123 12.1345 58.3261 11.75 58.1538 11.4119C57.9847 11.0739 57.7428 10.8071 57.4279 10.6115C57.1164 10.416 56.7485 10.3182 56.3242 10.3182C55.8569 10.3182 55.4525 10.4342 55.1112 10.6662C54.7731 10.8949 54.5129 11.1932 54.3306 11.5611C54.1483 11.929 54.0572 12.3234 54.0572 12.7443V13.4205C54.0572 13.9972 54.1566 14.486 54.3555 14.8871C54.5576 15.2848 54.8377 15.5881 55.1957 15.7969C55.5536 16.0024 55.9696 16.1051 56.4435 16.1051C56.7518 16.1051 57.0302 16.062 57.2788 15.9759C57.5307 15.8864 57.7478 15.7538 57.93 15.5781C58.1123 15.3991 58.2532 15.1771 58.3526 14.9119L59.4862 15.2301C59.3668 15.6146 59.1663 15.9527 58.8846 16.2443C58.6029 16.5327 58.2549 16.758 57.8406 16.9205C57.4263 17.0795 56.9606 17.1591 56.4435 17.1591ZM62.5636 12.4062V17H61.3903V9.36364H62.5238V10.5568H62.6232C62.8022 10.169 63.074 9.85748 63.4386 9.62216C63.8031 9.38352 64.2738 9.2642 64.8505 9.2642C65.3675 9.2642 65.82 9.37027 66.2077 9.58239C66.5955 9.79119 66.8971 10.1094 67.1126 10.5369C67.328 10.9612 67.4357 11.4981 67.4357 12.1477V17H66.2624V12.2273C66.2624 11.6274 66.1067 11.16 65.7951 10.8253C65.4835 10.4872 65.056 10.3182 64.5124 10.3182C64.1379 10.3182 63.8031 10.3994 63.5082 10.5618C63.2165 10.7242 62.9862 10.9612 62.8171 11.2727C62.6481 11.5843 62.5636 11.9621 62.5636 12.4062ZM74.3922 13.8778V9.36364H75.5655V17H74.3922V15.7074H74.3127C74.1337 16.0952 73.8553 16.425 73.4775 16.6967C73.0996 16.9652 72.6223 17.0994 72.0456 17.0994C71.5684 17.0994 71.1441 16.995 70.7729 16.7862C70.4017 16.5741 70.11 16.2559 69.8979 15.8317C69.6858 15.4041 69.5797 14.8655 69.5797 14.2159V9.36364H70.753V14.1364C70.753 14.6932 70.9088 15.1373 71.2203 15.4688C71.5352 15.8002 71.9363 15.9659 72.4235 15.9659C72.7151 15.9659 73.0118 15.8913 73.3134 15.7422C73.6183 15.593 73.8735 15.3643 74.079 15.0561C74.2878 14.7479 74.3922 14.3551 74.3922 13.8778ZM82.0895 12.0881V13.1818H77.6349V12.0881H82.0895ZM87.5545 9.36364V10.358H83.438V9.36364H87.5545ZM84.671 17V8.30966C84.671 7.87216 84.7737 7.50758 84.9792 7.21591C85.1847 6.92424 85.4515 6.70549 85.7797 6.55966C86.1078 6.41383 86.4541 6.34091 86.8187 6.34091C87.1071 6.34091 87.3424 6.36411 87.5247 6.41051C87.707 6.45691 87.8429 6.5 87.9324 6.53977L87.5943 7.55398C87.5346 7.53409 87.4518 7.50923 87.3457 7.4794C87.243 7.44957 87.1071 7.43466 86.938 7.43466C86.5502 7.43466 86.2702 7.53243 86.0978 7.72798C85.9288 7.92353 85.8443 8.21023 85.8443 8.58807V17H84.671ZM91.9867 17.1591C91.2973 17.1591 90.6924 16.995 90.1721 16.6669C89.655 16.3388 89.2507 15.8797 88.959 15.2898C88.6706 14.6998 88.5265 14.0104 88.5265 13.2216C88.5265 12.4261 88.6706 11.7318 88.959 11.1385C89.2507 10.5452 89.655 10.0845 90.1721 9.75639C90.6924 9.42827 91.2973 9.2642 91.9867 9.2642C92.6761 9.2642 93.2793 9.42827 93.7963 9.75639C94.3167 10.0845 94.7211 10.5452 95.0094 11.1385C95.3011 11.7318 95.4469 12.4261 95.4469 13.2216C95.4469 14.0104 95.3011 14.6998 95.0094 15.2898C94.7211 15.8797 94.3167 16.3388 93.7963 16.6669C93.2793 16.995 92.6761 17.1591 91.9867 17.1591ZM91.9867 16.1051C92.5104 16.1051 92.9412 15.9709 93.2793 15.7024C93.6174 15.4339 93.8676 15.081 94.03 14.6435C94.1924 14.206 94.2736 13.732 94.2736 13.2216C94.2736 12.7112 94.1924 12.2356 94.03 11.7947C93.8676 11.3539 93.6174 10.9976 93.2793 10.7259C92.9412 10.4541 92.5104 10.3182 91.9867 10.3182C91.463 10.3182 91.0321 10.4541 90.6941 10.7259C90.356 10.9976 90.1058 11.3539 89.9434 11.7947C89.781 12.2356 89.6998 12.7112 89.6998 13.2216C89.6998 13.732 89.781 14.206 89.9434 14.6435C90.1058 15.081 90.356 15.4339 90.6941 15.7024C91.0321 15.9709 91.463 16.1051 91.9867 16.1051ZM98.4112 6.81818V17H97.2379V6.81818H98.4112ZM103.444 17.1591C102.807 17.1591 102.246 16.9983 101.758 16.6768C101.271 16.352 100.89 15.8946 100.615 15.3047C100.34 14.7114 100.202 14.0104 100.202 13.2017C100.202 12.3996 100.34 11.7036 100.615 11.1136C100.89 10.5237 101.273 10.0679 101.763 9.74645C102.254 9.42495 102.821 9.2642 103.464 9.2642C103.961 9.2642 104.354 9.34706 104.642 9.51278C104.934 9.67519 105.156 9.8608 105.308 10.0696C105.464 10.2751 105.585 10.4441 105.671 10.5767H105.77V6.81818H106.944V17H105.81V15.8267H105.671C105.585 15.9659 105.462 16.1416 105.303 16.3537C105.144 16.5625 104.917 16.7498 104.622 16.9155C104.327 17.0779 103.934 17.1591 103.444 17.1591ZM103.603 16.1051C104.073 16.1051 104.471 15.9825 104.796 15.7372C105.121 15.4886 105.368 15.1456 105.537 14.7081C105.706 14.2673 105.79 13.7585 105.79 13.1818C105.79 12.6117 105.707 12.1129 105.542 11.6854C105.376 11.2545 105.131 10.9197 104.806 10.6811C104.481 10.4392 104.08 10.3182 103.603 10.3182C103.106 10.3182 102.691 10.4458 102.36 10.701C102.032 10.9529 101.785 11.2959 101.619 11.7301C101.457 12.161 101.376 12.6449 101.376 13.1818C101.376 13.7254 101.458 14.2192 101.624 14.6634C101.793 15.1042 102.042 15.4555 102.37 15.7173C102.701 15.9759 103.112 16.1051 103.603 16.1051ZM113.631 12.0881V13.1818H109.176V12.0881H113.631ZM118.797 17.1591C118.108 17.1591 117.503 16.995 116.983 16.6669C116.466 16.3388 116.061 15.8797 115.77 15.2898C115.481 14.6998 115.337 14.0104 115.337 13.2216C115.337 12.4261 115.481 11.7318 115.77 11.1385C116.061 10.5452 116.466 10.0845 116.983 9.75639C117.503 9.42827 118.108 9.2642 118.797 9.2642C119.487 9.2642 120.09 9.42827 120.607 9.75639C121.127 10.0845 121.532 10.5452 121.82 11.1385C122.112 11.7318 122.257 12.4261 122.257 13.2216C122.257 14.0104 122.112 14.6998 121.82 15.2898C121.532 15.8797 121.127 16.3388 120.607 16.6669C120.09 16.995 119.487 17.1591 118.797 17.1591ZM118.797 16.1051C119.321 16.1051 119.752 15.9709 120.09 15.7024C120.428 15.4339 120.678 15.081 120.841 14.6435C121.003 14.206 121.084 13.732 121.084 13.2216C121.084 12.7112 121.003 12.2356 120.841 11.7947C120.678 11.3539 120.428 10.9976 120.09 10.7259C119.752 10.4541 119.321 10.3182 118.797 10.3182C118.274 10.3182 117.843 10.4541 117.505 10.7259C117.167 10.9976 116.916 11.3539 116.754 11.7947C116.592 12.2356 116.51 12.7112 116.51 13.2216C116.51 13.732 116.592 14.206 116.754 14.6435C116.916 15.081 117.167 15.4339 117.505 15.7024C117.843 15.9709 118.274 16.1051 118.797 16.1051ZM128.861 13.8778V9.36364H130.034V17H128.861V15.7074H128.781C128.602 16.0952 128.324 16.425 127.946 16.6967C127.568 16.9652 127.091 17.0994 126.514 17.0994C126.037 17.0994 125.613 16.995 125.242 16.7862C124.87 16.5741 124.579 16.2559 124.367 15.8317C124.155 15.4041 124.048 14.8655 124.048 14.2159V9.36364H125.222V14.1364C125.222 14.6932 125.378 15.1373 125.689 15.4688C126.004 15.8002 126.405 15.9659 126.892 15.9659C127.184 15.9659 127.481 15.8913 127.782 15.7422C128.087 15.593 128.342 15.3643 128.548 15.0561C128.757 14.7479 128.861 14.3551 128.861 13.8778ZM135.504 9.36364V10.358H131.547V9.36364H135.504ZM132.7 7.53409H133.874V14.8125C133.874 15.1439 133.922 15.3925 134.018 15.5582C134.117 15.7206 134.243 15.83 134.396 15.8864C134.551 15.9394 134.715 15.9659 134.888 15.9659C135.017 15.9659 135.123 15.9593 135.206 15.946C135.289 15.9295 135.355 15.9162 135.405 15.9062L135.643 16.9602C135.564 16.9901 135.453 17.0199 135.31 17.0497C135.168 17.0829 134.987 17.0994 134.768 17.0994C134.437 17.0994 134.112 17.0282 133.794 16.8857C133.479 16.7431 133.217 16.526 133.009 16.2344C132.803 15.9427 132.7 15.5748 132.7 15.1307V7.53409ZM138.607 6.81818V17H137.433V6.81818H138.607ZM140.756 17V9.36364H141.929V17H140.756ZM141.352 8.09091C141.123 8.09091 140.926 8.01302 140.76 7.85724C140.598 7.70147 140.517 7.5142 140.517 7.29545C140.517 7.0767 140.598 6.88944 140.76 6.73366C140.926 6.57789 141.123 6.5 141.352 6.5C141.581 6.5 141.776 6.57789 141.939 6.73366C142.104 6.88944 142.187 7.0767 142.187 7.29545C142.187 7.5142 142.104 7.70147 141.939 7.85724C141.776 8.01302 141.581 8.09091 141.352 8.09091ZM145.251 12.4062V17H144.078V9.36364H145.211V10.5568H145.311C145.49 10.169 145.761 9.85748 146.126 9.62216C146.491 9.38352 146.961 9.2642 147.538 9.2642C148.055 9.2642 148.507 9.37027 148.895 9.58239C149.283 9.79119 149.585 10.1094 149.8 10.5369C150.016 10.9612 150.123 11.4981 150.123 12.1477V17H148.95V12.2273C148.95 11.6274 148.794 11.16 148.483 10.8253C148.171 10.4872 147.743 10.3182 147.2 10.3182C146.825 10.3182 146.491 10.3994 146.196 10.5618C145.904 10.7242 145.674 10.9612 145.505 11.2727C145.336 11.5843 145.251 11.9621 145.251 12.4062ZM155.469 17.1591C154.733 17.1591 154.098 16.9967 153.565 16.6719C153.035 16.3438 152.625 15.8864 152.337 15.2997C152.052 14.7098 151.909 14.0237 151.909 13.2415C151.909 12.4593 152.052 11.7699 152.337 11.1733C152.625 10.5734 153.026 10.1061 153.54 9.77131C154.057 9.43324 154.66 9.2642 155.35 9.2642C155.747 9.2642 156.14 9.33049 156.528 9.46307C156.916 9.59564 157.269 9.81108 157.587 10.1094C157.905 10.4044 158.159 10.7955 158.347 11.2827C158.536 11.7699 158.631 12.3698 158.631 13.0824V13.5795H152.744V12.5653H157.438C157.438 12.1345 157.352 11.75 157.179 11.4119C157.01 11.0739 156.768 10.8071 156.453 10.6115C156.142 10.416 155.774 10.3182 155.35 10.3182C154.882 10.3182 154.478 10.4342 154.137 10.6662C153.798 10.8949 153.538 11.1932 153.356 11.5611C153.174 11.929 153.083 12.3234 153.083 12.7443V13.4205C153.083 13.9972 153.182 14.486 153.381 14.8871C153.583 15.2848 153.863 15.5881 154.221 15.7969C154.579 16.0024 154.995 16.1051 155.469 16.1051C155.777 16.1051 156.056 16.062 156.304 15.9759C156.556 15.8864 156.773 15.7538 156.955 15.5781C157.138 15.3991 157.279 15.1771 157.378 14.9119L158.512 15.2301C158.392 15.6146 158.192 15.9527 157.91 16.2443C157.628 16.5327 157.28 16.758 156.866 16.9205C156.452 17.0795 155.986 17.1591 155.469 17.1591Z"
29
+ fill={color}
30
+ />
31
+ </svg>
32
+ );
33
+ }
34
+ );
35
+
36
+ IconMenuFoldOutline.displayName = "IconMenuFoldOutline";
37
+
38
+ export default IconMenuFoldOutline;
@@ -0,0 +1,34 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconMenuUnFoldOutline = 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-menu-un-fold-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.75 4C2.33579 4 2 4.33579 2 4.75 2 5.16421 2.33579 5.5 2.75 5.5H17.25C17.6642 5.5 18 5.16421 18 4.75 18 4.33579 17.6642 4 17.25 4H2.75ZM9.5 9.25C9.08579 9.25 8.75 9.58579 8.75 10 8.75 10.4142 9.08579 10.75 9.5 10.75H17.25C17.6642 10.75 18 10.4142 18 10 18 9.58579 17.6642 9.25 17.25 9.25H9.5ZM2 15.25C2 14.8358 2.33579 14.5 2.75 14.5H17.25C17.6642 14.5 18 14.8358 18 15.25 18 15.6642 17.6642 16 17.25 16H2.75C2.33579 16 2 15.6642 2 15.25ZM5.90179 10.4203 3.23058 12.1502C2.83137 12.4087 2.30443 12.1222 2.30443 11.6466V8.18674C2.30443 7.71113 2.83137 7.4246 3.23058 7.68313L5.90179 9.41306C6.26692 9.64952 6.26692 10.1838 5.90179 10.4203Z"
25
+ fill={color}
26
+ />
27
+ </svg>
28
+ );
29
+ }
30
+ );
31
+
32
+ IconMenuUnFoldOutline.displayName = "IconMenuUnFoldOutline";
33
+
34
+ export default IconMenuUnFoldOutline;
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconObliqueOutline = 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-oblique-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="M12.1835 2.78312C12.5794 2.90494 12.8015 3.32462 12.6797 3.72052L8.67973 16.7205C8.55791 17.1164 8.13822 17.3386 7.74233 17.2168C7.34643 17.095 7.12424 16.6753 7.24606 16.2794L11.2461 3.27939C11.3679 2.88349 11.7876 2.66131 12.1835 2.78312Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconObliqueOutline.displayName = "IconObliqueOutline";
35
+
36
+ export default IconObliqueOutline;
@@ -0,0 +1,37 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconQuestionMarkCircleOutline = 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-question-mark-circle-outline`,
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="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"
27
+ fill={color}
28
+ fillRule="evenodd"
29
+ clipRule="evenodd"
30
+ />
31
+ </svg>
32
+ );
33
+ });
34
+
35
+ IconQuestionMarkCircleOutline.displayName = "IconQuestionMarkCircleOutline";
36
+
37
+ export default IconQuestionMarkCircleOutline;
@@ -43,6 +43,9 @@
43
43
  { "componentName": "IconLocalOutline" },
44
44
  { "componentName": "Icon3DCubeTransparentOutline" },
45
45
  { "componentName": "Icon3DCubeOutline" },
46
+ { "componentName": "IconMapOutline" },
47
+ { "componentName": "IconMapPinOutline" },
48
+ { "componentName": "IconArrowChevronUpDownOutline" },
46
49
  { "componentName": "IconArrowLeftOutline" },
47
50
  { "componentName": "IconArrowRightOutline" },
48
51
  { "componentName": "IconArrowDownOutline" },
@@ -64,10 +67,14 @@
64
67
  { "componentName": "IconArrowDoubleLeftOutline" },
65
68
  { "componentName": "IconArrowDoubleRightOutline" },
66
69
  { "componentName": "IconEllipsisMoreHorizontalOutline" },
70
+ { "componentName": "IconEllipsisMoreVerticalOutline" },
67
71
  { "componentName": "IconCog6ToothOutline" },
68
72
  { "componentName": "IconCheckOutline" },
69
73
  { "componentName": "IconCloseOutline" },
74
+ { "componentName": "IconCheckCircleOutline" },
70
75
  { "componentName": "IconCloseCircleOutline" },
76
+ { "componentName": "IconQuestionMarkCircleOutline" },
77
+ { "componentName": "IconInformationCircleOutline" },
71
78
  { "componentName": "IconRotateOutline" },
72
79
  { "componentName": "IconLanguageOutline" },
73
80
  { "componentName": "IconPlusOutline" },
@@ -81,9 +88,6 @@
81
88
  { "componentName": "IconExclamationTriangleOutline" },
82
89
  { "componentName": "IconClipboardDocumentListOutline" },
83
90
  { "componentName": "IconCalendarOutline" },
84
- { "componentName": "IconMapOutline" },
85
- { "componentName": "IconMapPinOutline" },
86
- { "componentName": "IconArrowChevronUpDownOutline" },
87
91
  { "componentName": "IconAlignLeftOutline" },
88
92
  { "componentName": "IconAlignCenterHorizontallyOutline" },
89
93
  { "componentName": "IconAlignRightOutline" },
@@ -114,6 +118,12 @@
114
118
  { "componentName": "IconToolLockedOutline" },
115
119
  { "componentName": "IconToolUnlockedOutline" },
116
120
  { "componentName": "IconRotateCursorOutline" },
121
+ { "componentName": "IconObliqueOutline" },
122
+ { "componentName": "IconMenuFoldOutline" },
123
+ { "componentName": "IconMenuUnFoldOutline" },
124
+ { "componentName": "IconFileImageOutline" },
125
+ { "componentName": "IconFilePdfOutline" },
126
+ { "componentName": "IconFileSaveOutline" },
117
127
  { "componentName": "IconImagePhotoSolid" },
118
128
  { "componentName": "IconExclamationCircleSolid" },
119
129
  { "componentName": "IconExclamationWarningTriangleSolid" },
@@ -139,6 +149,7 @@
139
149
  { "componentName": "IconArrowDownOnSquareSolid" },
140
150
  { "componentName": "IconPencilSquareSolid" },
141
151
  { "componentName": "IconEyeSolid" },
152
+ { "componentName": "IconEyeSlashSolid" },
142
153
  { "componentName": "IconStarSolid" },
143
154
  { "componentName": "IconStopSquareSolid" },
144
155
  { "componentName": "IconRocketLaunch" },
@@ -150,6 +161,7 @@
150
161
  { "componentName": "IconMapPinSolid" },
151
162
  { "componentName": "IconEnvelopeSolid" },
152
163
  { "componentName": "IconImagePhotoPlusSolid" },
164
+ { "componentName": "IconImagePhotoErrorSolid" },
153
165
  { "componentName": "IconTagPlusSolid" },
154
166
  { "componentName": "IconSwatchPlusSolid" },
155
167
  { "componentName": "IconSwatchMinusSolid" },
@@ -180,7 +192,11 @@
180
192
  { "componentName": "IconRetryCircleSolid" },
181
193
  { "componentName": "IconArrowUpCaretTriangleSolid" },
182
194
  { "componentName": "IconArrowDownCaretTriangleSolid" },
195
+ { "componentName": "IconArrowLeftCaretTriangleSolid" },
196
+ { "componentName": "IconArrowRightCaretTriangleSolid" },
183
197
  { "componentName": "IconCheckboxSolid" },
198
+ { "componentName": "IconCalendarClockSolid" },
199
+ { "componentName": "IconEmptySolid" },
184
200
  { "componentName": "IconDocumentTextBicolorSolid" },
185
201
  { "componentName": "IconScissorsBicolorSolid" },
186
202
  { "componentName": "IconTextBicolorSolid" },
@@ -41,6 +41,9 @@ export { default as IconImportOutline } from "./default/icon-import-outline";
41
41
  export { default as IconLocalOutline } from "./default/icon-local-outline";
42
42
  export { default as Icon3DCubeTransparentOutline } from "./default/icon-3-d-cube-transparent-outline";
43
43
  export { default as Icon3DCubeOutline } from "./default/icon-3-d-cube-outline";
44
+ export { default as IconMapOutline } from "./default/icon-map-outline";
45
+ export { default as IconMapPinOutline } from "./default/icon-map-pin-outline";
46
+ export { default as IconArrowChevronUpDownOutline } from "./default/icon-arrow-chevron-up-down-outline";
44
47
  export { default as IconArrowLeftOutline } from "./default/icon-arrow-left-outline";
45
48
  export { default as IconArrowRightOutline } from "./default/icon-arrow-right-outline";
46
49
  export { default as IconArrowDownOutline } from "./default/icon-arrow-down-outline";
@@ -62,10 +65,14 @@ export { default as IconArrowPathRoundedSquareOutline } from "./default/icon-arr
62
65
  export { default as IconArrowDoubleLeftOutline } from "./default/icon-arrow-double-left-outline";
63
66
  export { default as IconArrowDoubleRightOutline } from "./default/icon-arrow-double-right-outline";
64
67
  export { default as IconEllipsisMoreHorizontalOutline } from "./default/icon-ellipsis-more-horizontal-outline";
68
+ export { default as IconEllipsisMoreVerticalOutline } from "./default/icon-ellipsis-more-vertical-outline";
65
69
  export { default as IconCog6ToothOutline } from "./default/icon-cog-6-tooth-outline";
66
70
  export { default as IconCheckOutline } from "./default/icon-check-outline";
67
71
  export { default as IconCloseOutline } from "./default/icon-close-outline";
72
+ export { default as IconCheckCircleOutline } from "./default/icon-check-circle-outline";
68
73
  export { default as IconCloseCircleOutline } from "./default/icon-close-circle-outline";
74
+ export { default as IconQuestionMarkCircleOutline } from "./default/icon-question-mark-circle-outline";
75
+ export { default as IconInformationCircleOutline } from "./default/icon-information-circle-outline";
69
76
  export { default as IconRotateOutline } from "./default/icon-rotate-outline";
70
77
  export { default as IconLanguageOutline } from "./default/icon-language-outline";
71
78
  export { default as IconPlusOutline } from "./default/icon-plus-outline";
@@ -79,9 +86,6 @@ export { default as IconArrowsRightLeftOutline } from "./default/icon-arrows-rig
79
86
  export { default as IconExclamationTriangleOutline } from "./default/icon-exclamation-triangle-outline";
80
87
  export { default as IconClipboardDocumentListOutline } from "./default/icon-clipboard-document-list-outline";
81
88
  export { default as IconCalendarOutline } from "./default/icon-calendar-outline";
82
- export { default as IconMapOutline } from "./default/icon-map-outline";
83
- export { default as IconMapPinOutline } from "./default/icon-map-pin-outline";
84
- export { default as IconArrowChevronUpDownOutline } from "./default/icon-arrow-chevron-up-down-outline";
85
89
  export { default as IconAlignLeftOutline } from "./default/icon-align-left-outline";
86
90
  export { default as IconAlignCenterHorizontallyOutline } from "./default/icon-align-center-horizontally-outline";
87
91
  export { default as IconAlignRightOutline } from "./default/icon-align-right-outline";
@@ -112,6 +116,12 @@ export { default as IconClearOutline } from "./default/icon-clear-outline";
112
116
  export { default as IconToolLockedOutline } from "./default/icon-tool-locked-outline";
113
117
  export { default as IconToolUnlockedOutline } from "./default/icon-tool-unlocked-outline";
114
118
  export { default as IconRotateCursorOutline } from "./default/icon-rotate-cursor-outline";
119
+ export { default as IconObliqueOutline } from "./default/icon-oblique-outline";
120
+ export { default as IconMenuFoldOutline } from "./default/icon-menu-fold-outline";
121
+ export { default as IconMenuUnFoldOutline } from "./default/icon-menu-un-fold-outline";
122
+ export { default as IconFileImageOutline } from "./default/icon-file-image-outline";
123
+ export { default as IconFilePdfOutline } from "./default/icon-file-pdf-outline";
124
+ export { default as IconFileSaveOutline } from "./default/icon-file-save-outline";
115
125
  export { default as IconImagePhotoSolid } from "./default/icon-image-photo-solid";
116
126
  export { default as IconExclamationCircleSolid } from "./default/icon-exclamation-circle-solid";
117
127
  export { default as IconExclamationWarningTriangleSolid } from "./default/icon-exclamation-warning-triangle-solid";
@@ -137,6 +147,7 @@ export { default as IconDocumentArrowUpSolid } from "./default/icon-document-arr
137
147
  export { default as IconArrowDownOnSquareSolid } from "./default/icon-arrow-down-on-square-solid";
138
148
  export { default as IconPencilSquareSolid } from "./default/icon-pencil-square-solid";
139
149
  export { default as IconEyeSolid } from "./default/icon-eye-solid";
150
+ export { default as IconEyeSlashSolid } from "./default/icon-eye-slash-solid";
140
151
  export { default as IconStarSolid } from "./default/icon-star-solid";
141
152
  export { default as IconStopSquareSolid } from "./default/icon-stop-square-solid";
142
153
  export { default as IconRocketLaunch } from "./default/icon-rocket-launch";
@@ -148,6 +159,7 @@ export { default as IconUserSolid } from "./default/icon-user-solid";
148
159
  export { default as IconMapPinSolid } from "./default/icon-map-pin-solid";
149
160
  export { default as IconEnvelopeSolid } from "./default/icon-envelope-solid";
150
161
  export { default as IconImagePhotoPlusSolid } from "./default/icon-image-photo-plus-solid";
162
+ export { default as IconImagePhotoErrorSolid } from "./default/icon-image-photo-error-solid";
151
163
  export { default as IconTagPlusSolid } from "./default/icon-tag-plus-solid";
152
164
  export { default as IconSwatchPlusSolid } from "./default/icon-swatch-plus-solid";
153
165
  export { default as IconSwatchMinusSolid } from "./default/icon-swatch-minus-solid";
@@ -178,7 +190,11 @@ export { default as IconEditSolid } from "./default/icon-edit-solid";
178
190
  export { default as IconRetryCircleSolid } from "./default/icon-retry-circle-solid";
179
191
  export { default as IconArrowUpCaretTriangleSolid } from "./default/icon-arrow-up-caret-triangle-solid";
180
192
  export { default as IconArrowDownCaretTriangleSolid } from "./default/icon-arrow-down-caret-triangle-solid";
193
+ export { default as IconArrowLeftCaretTriangleSolid } from "./default/icon-arrow-left-caret-triangle-solid";
194
+ export { default as IconArrowRightCaretTriangleSolid } from "./default/icon-arrow-right-caret-triangle-solid";
181
195
  export { default as IconCheckboxSolid } from "./default/icon-checkbox-solid";
196
+ export { default as IconCalendarClockSolid } from "./default/icon-calendar-clock-solid";
197
+ export { default as IconEmptySolid } from "./default/icon-empty-solid";
182
198
  export { default as IconDocumentTextBicolorSolid } from "./default/icon-document-text-bicolor-solid";
183
199
  export { default as IconScissorsBicolorSolid } from "./default/icon-scissors-bicolor-solid";
184
200
  export { default as IconTextBicolorSolid } from "./default/icon-text-bicolor-solid";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconArrowLeftCaretTriangleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconArrowLeftCaretTriangleSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconArrowRightCaretTriangleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconArrowRightCaretTriangleSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconCalendarClockSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconCalendarClockSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconCheckCircleOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconCheckCircleOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconEllipsisMoreVerticalOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconEllipsisMoreVerticalOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconEmptySolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconEmptySolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconEyeSlashSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconEyeSlashSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconFileImageOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconFileImageOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconFilePdfOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconFilePdfOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconFileSaveOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconFileSaveOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconImagePhotoErrorSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconImagePhotoErrorSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconInformationCircleOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconInformationCircleOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconMenuFoldOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconMenuFoldOutline;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconMenuUnFoldOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconMenuUnFoldOutline;