@sunzi/icon 1.0.11 → 1.0.13

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 (26) 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 +1 -2
  6. package/package.json +4 -1
  7. package/src/customeow/default/icon-arrow-left-circle-solid.tsx +36 -0
  8. package/src/customeow/default/icon-font-add-solid.tsx +3 -3
  9. package/src/customeow/default/icon-font-solid.tsx +4 -4
  10. package/src/customeow/default/icon-image-photo-plus-solid.tsx +7 -1
  11. package/src/customeow/index.json +1 -2
  12. package/src/customeow/index.tsx +1 -2
  13. package/src/customeow-shein/default/icon-arrow-left-circle-solid.tsx +36 -0
  14. package/src/customeow-shein/default/icon-font-add-solid.tsx +3 -3
  15. package/src/customeow-shein/default/icon-font-solid.tsx +4 -4
  16. package/src/customeow-shein/default/icon-image-photo-plus-solid.tsx +7 -1
  17. package/src/customeow-shein/index.json +1 -2
  18. package/src/customeow-shein/index.tsx +1 -2
  19. package/types/customeow/default/icon-arrow-left-circle-solid.d.ts +3 -0
  20. package/types/customeow/index.d.ts +1 -2
  21. package/types/customeow-shein/default/icon-arrow-left-circle-solid.d.ts +3 -0
  22. package/types/customeow-shein/index.d.ts +1 -2
  23. package/types/customeow/default/icon-arrow-dis-left-circle-solid.d.ts +0 -3
  24. package/types/customeow/default/icon-close-dis-circle-solid.d.ts +0 -3
  25. package/types/customeow-shein/default/icon-arrow-dis-left-circle-solid.d.ts +0 -3
  26. package/types/customeow-shein/default/icon-close-dis-circle-solid.d.ts +0 -3
package/manifest.json CHANGED
@@ -152,8 +152,7 @@
152
152
  "icon-click-solid": "48/default/icon-click-solid.svg",
153
153
  "icon-puzzle-piece-solid": "48/default/icon-puzzle-piece-solid.svg",
154
154
  "icon-keyboard-solid": "48/default/icon-keyboard-solid.svg",
155
- "icon-close-dis-circle-solid": "48/default/icon-close-dis-circle-solid.svg",
156
- "icon-arrow-dis-left-circle-solid": "48/default/icon-arrow-dis-left-circle-solid.svg",
155
+ "icon-arrow-left-circle-solid": "48/default/icon-arrow-left-circle-solid.svg",
157
156
  "icon-font-add-solid": "48/default/icon-font-add-solid.svg",
158
157
  "icon-font-solid": "48/default/icon-font-solid.svg",
159
158
  "icon-qr-code-solid": "48/default/icon-qr-code-solid.svg",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sunzi/icon",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "React Icon Set",
5
5
  "types": "./types",
6
6
  "files": [
@@ -40,6 +40,9 @@
40
40
  "exports": {
41
41
  "./customeow": {
42
42
  "import": "./dist/customeow/index.es.js"
43
+ },
44
+ "./customeow-shein": {
45
+ "import": "./dist/customeow-shein/index.es.js"
43
46
  }
44
47
  },
45
48
  "typesVersions": {
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconArrowLeftCircleSolid = 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-arrow-left-circle-solid`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 20 20"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10ZM9.81699 7.94195C10.0611 7.69787 10.0611 7.30215 9.81699 7.05807C9.57292 6.81399 9.17719 6.81399 8.93311 7.05807L6.43311 9.55807C6.18903 9.80215 6.18903 10.1979 6.43311 10.442L8.93311 12.942C9.17719 13.186 9.57291 13.186 9.81699 12.942C10.0611 12.6979 10.0611 12.3021 9.81699 12.0581L8.38393 10.625H13.125C13.4702 10.625 13.75 10.3452 13.75 10C13.75 9.65483 13.4702 9.37501 13.125 9.37501H8.38393L9.81699 7.94195Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconArrowLeftCircleSolid.displayName = "IconArrowLeftCircleSolid";
35
+
36
+ export default IconArrowLeftCircleSolid;
@@ -14,18 +14,18 @@ export const IconFontAddSolid = forwardRef<SVGSVGElement, IconProps>(
14
14
  };
15
15
  return (
16
16
  <svg
17
- viewBox="0 0 24 24"
17
+ viewBox="0 0 20 20"
18
18
  fill="none"
19
19
  xmlns="http://www.w3.org/2000/svg"
20
20
  {...props}
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M10.575 9.50119H9.54702C9.52841 9.50119 9.51585 9.48198 9.52315 9.46467L9.96667 8.41228C10.0026 8.32712 10.122 8.32724 10.1577 8.41247L10.5989 9.46471C10.6061 9.48202 10.5935 9.50119 10.575 9.50119ZM14.9842 11.3971C14.6441 11.4573 14.26 11.4233 14.16 11.1233 14.06 10.8233 14.38 10.6833 14.6 10.6233 14.82 10.5633 15.4796 10.5033 15.94 10.5033 15.94 10.7381 15.74 11.2633 14.9842 11.3971Z"
24
+ d="M8.81251 7.91767H7.95589C7.94039 7.91767 7.92992 7.90166 7.936 7.88723L8.3056 7.01025C8.33551 6.93928 8.43501 6.93937 8.46479 7.0104L8.83242 7.88727C8.83846 7.90169 8.828 7.91767 8.81251 7.91767ZM12.4868 9.4976C12.2035 9.54775 11.8834 9.51946 11.8001 9.26946 11.7167 9.01946 11.9834 8.9028 12.1667 8.8528 12.3501 8.8028 12.8997 8.7528 13.2834 8.7528 13.2834 8.94844 13.1167 9.38613 12.4868 9.4976Z"
25
25
  fill={color}
26
26
  />
27
27
  <path
28
- d="M6 2.5C4.89543 2.5 4 3.39543 4 4.5V19.5C4 20.6046 4.89543 21.5 6 21.5H19C20.1046 21.5 21 20.6046 21 19.5V9.27797C21 8.77758 20.8124 8.29538 20.4743 7.92652L16.3918 3.47283C15.8235 2.85294 15.0212 2.5 14.1803 2.5H6ZM12.8546 14.1779C12.7406 14.064 12.5861 14 12.425 14C12.2639 14 12.1093 14.064 11.9954 14.1779L9.97041 16.2029C9.73317 16.4402 9.73317 16.8248 9.97041 17.0621C10.2077 17.2993 10.5923 17.2993 10.8296 17.0621L11.8175 16.0741L11.8175 18.3925C11.8175 18.728 12.0895 19 12.425 19C12.7605 19 13.0325 18.728 13.0325 18.3925L13.0325 16.0741L14.0204 17.0621C14.2577 17.2993 14.6423 17.2993 14.8796 17.0621C15.1168 16.8248 15.1168 16.4402 14.8796 16.2029L12.8546 14.1779ZM11.1037 10.6689L11.738 12.1819C11.8342 12.4113 12.0615 12.598 12.3064 12.56C13.08 12.44 12.86 11.76 12.86 11.76L10.6393 6.38319C10.4247 5.87227 9.70111 5.87227 9.48648 6.3832L7.24854 11.7105C7.07847 12.1154 7.37663 12.56 7.8126 12.56C8.05822 12.56 8.28061 12.4129 8.37638 12.1857L9.01566 10.6688C9.01974 10.6591 9.02913 10.6529 9.03953 10.6529H11.0798C11.0902 10.6529 11.0996 10.6592 11.1037 10.6689ZM15.1008 7.56335C14.0216 7.50335 13.24 8.26334 13.04 8.80335C12.9234 9.15551 13.1268 9.36596 13.36 9.48334C13.5933 9.60073 13.98 9.56334 14.16 9.28334L14.1745 9.26075C14.351 8.98562 14.5545 8.66831 15.08 8.70334C15.68 8.74334 15.96 9.16334 15.96 9.36334C15.4935 9.36334 14.88 9.36715 14.14 9.54334C13.4 9.71953 12.88 10.2799 12.88 11.0733C12.88 11.5266 13.16 11.9172 13.46 12.1633C13.74 12.3931 14.2396 12.5633 14.7 12.5633C14.8 12.5633 15.5796 12.5467 16.04 12.2633C16.04 12.2859 16.22 12.5857 16.6 12.5633C16.98 12.541 17.2 12.2211 17.2 12.0033V9.54319C17.2 8.34505 16.18 7.62334 15.1008 7.56335Z"
28
+ d="M5.00004 2.08334C4.07957 2.08334 3.33337 2.82954 3.33337 3.75001V16.25C3.33337 17.1705 4.07957 17.9167 5.00004 17.9167H15.8334C16.7538 17.9167 17.5 17.1705 17.5 16.25V7.73165C17.5 7.31466 17.3437 6.91282 17.062 6.60544L13.6598 2.89403C13.1863 2.37746 12.5177 2.08334 11.817 2.08334H5.00004ZM10.7122 11.815C10.6172 11.72 10.4885 11.6667 10.3542 11.6667C10.2199 11.6667 10.0912 11.72 9.99622 11.815L8.30872 13.5025C8.11102 13.7002 8.11102 14.0207 8.30872 14.2184C8.50642 14.4161 8.82697 14.4161 9.02467 14.2184L9.84794 13.3951L9.84794 15.3271C9.84794 15.6067 10.0746 15.8333 10.3542 15.8333C10.6338 15.8333 10.8604 15.6067 10.8604 15.3271L10.8604 13.3951L11.6837 14.2184C11.8814 14.4161 12.202 14.4161 12.3997 14.2184C12.5974 14.0207 12.5974 13.7002 12.3997 13.5025L10.7122 11.815ZM9.25312 8.89073L9.78172 10.1516C9.8619 10.3428 10.0513 10.4983 10.2554 10.4667C10.9001 10.3667 10.7167 9.80001 10.7167 9.80001L8.86612 5.31934C8.68726 4.89357 8.0843 4.89357 7.90544 5.31934L6.04049 9.7588C5.89877 10.0962 6.14723 10.4667 6.51054 10.4667C6.71523 10.4667 6.90055 10.3441 6.98036 10.1547L7.51309 8.89069C7.51649 8.88263 7.52432 8.8774 7.53298 8.8774H9.23321C9.24189 8.8774 9.24973 8.88265 9.25312 8.89073ZM12.584 6.3028C11.6847 6.2528 11.0334 6.88613 10.8667 7.33613C10.7695 7.6296 10.939 7.80498 11.1334 7.9028C11.3278 8.00062 11.6501 7.96946 11.8001 7.73613L11.8121 7.7173C11.9592 7.48803 12.1288 7.2236 12.5667 7.2528C13.0667 7.28613 13.3001 7.63613 13.3001 7.8028C12.9113 7.8028 12.4001 7.80597 11.7834 7.9528C11.1667 8.09962 10.7334 8.56659 10.7334 9.22774C10.7334 9.60553 10.9667 9.931 11.2167 10.1361C11.4501 10.3276 11.8664 10.4695 12.2501 10.4695C12.3334 10.4695 12.983 10.4556 13.3667 10.2195C13.3667 10.2382 13.5167 10.4881 13.8334 10.4695C14.1501 10.4508 14.3334 10.1842 14.3334 10.0028V7.95267C14.3334 6.95422 13.4834 6.3528 12.584 6.3028Z"
29
29
  fill={color}
30
30
  fillRule="evenodd"
31
31
  clipRule="evenodd"
@@ -14,26 +14,26 @@ export const IconFontSolid = forwardRef<SVGSVGElement, IconProps>(
14
14
  };
15
15
  return (
16
16
  <svg
17
- viewBox="0 0 24 24"
17
+ viewBox="0 0 20 20"
18
18
  fill="none"
19
19
  xmlns="http://www.w3.org/2000/svg"
20
20
  {...props}
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M4.73529 1.37842C3.50078 1.37842 2.5 2.37919 2.5 3.6137V20.3783C2.5 21.6128 3.50078 22.6136 4.73529 22.6136H19.2647C20.4992 22.6136 21.5 21.6128 21.5 20.3783V8.95374C21.5 8.39449 21.2904 7.85556 20.9125 7.44331L16.3496 2.46569C15.7145 1.77288 14.8178 1.37842 13.878 1.37842H4.73529Z"
24
+ d="M3.94612 1.14868C2.91735 1.14868 2.08337 1.98266 2.08337 3.01141V16.9819C2.08337 18.0107 2.91735 18.8446 3.94612 18.8446H16.054C17.0827 18.8446 17.9167 18.0107 17.9167 16.9819V7.46145C17.9167 6.99541 17.742 6.5463 17.4271 6.20275L13.6247 2.05474C13.0955 1.4774 12.3482 1.14868 11.565 1.14868H3.94612Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
28
28
  />
29
29
  <path
30
- d="M10.674 10.5497L11.3507 12.1638C11.4534 12.4086 11.6958 12.6077 11.9571 12.5672C12.7824 12.4392 12.5477 11.7137 12.5477 11.7137L10.1786 5.97759C9.94958 5.43252 9.17767 5.43252 8.94869 5.97759L6.56117 11.661C6.37973 12.0929 6.69782 12.5672 7.16293 12.5672C7.42497 12.5672 7.66222 12.4103 7.76439 12.1679L8.4464 10.5496C8.45075 10.5393 8.46077 10.5326 8.47186 10.5326H10.6485C10.6596 10.5326 10.6697 10.5393 10.674 10.5497ZM14.9382 7.23661C13.7869 7.1726 12.9531 7.98339 12.7397 8.55948C12.6153 8.93518 12.8323 9.1597 13.0811 9.28493C13.33 9.41016 13.7426 9.37028 13.9346 9.07156L13.9501 9.04745C14.1383 8.75394 14.3554 8.41542 14.9161 8.4528C15.5562 8.49547 15.8549 8.94354 15.8549 9.15691C15.3572 9.15691 14.7027 9.16097 13.9133 9.34894C13.1238 9.5369 12.569 10.1347 12.569 10.9811C12.569 11.4648 12.8678 11.8814 13.1878 12.144C13.4865 12.3891 14.0195 12.5708 14.5107 12.5708C14.6174 12.5708 15.449 12.553 15.9403 12.2507C15.9403 12.2748 16.1323 12.5946 16.5377 12.5708C16.9431 12.5469 17.1778 12.2056 17.1778 11.9733V9.34878C17.1778 8.07056 16.0896 7.30062 14.9382 7.23661ZM9.01328 9.30397H10.1099C10.1298 9.30397 10.1432 9.28351 10.1354 9.26505L9.66477 8.14248C9.62665 8.05156 9.49927 8.05143 9.46098 8.14229L8.98781 9.265C8.98003 9.28347 8.99343 9.30397 9.01328 9.30397ZM14.8138 11.3266C14.451 11.3908 14.0413 11.3546 13.9346 11.0345C13.8279 10.7145 14.1693 10.5651 14.404 10.5011C14.6387 10.4371 15.3424 10.3731 15.8336 10.3731C15.8336 10.6236 15.6202 11.1839 14.8138 11.3266Z"
30
+ 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
31
  fill={color}
32
32
  fillRule="evenodd"
33
33
  clipRule="evenodd"
34
34
  />
35
35
  <path
36
- d="M8.86436 17.1072H7.88413V18.1215C7.88413 18.3485 7.70009 18.5326 7.47307 18.5326 7.24605 18.5326 7.06201 18.3485 7.06201 18.1215V15.6137C7.06201 15.2698 7.34079 14.9911 7.68468 14.9911H9.11246C9.28709 14.9911 9.42866 15.1326 9.42866 15.3073 9.42866 15.4819 9.28709 15.6235 9.11246 15.6235H7.88413V16.4748H8.86436C9.039 16.4748 9.18056 16.6164 9.18056 16.791 9.18056 16.9657 9.039 17.1072 8.86436 17.1072ZM10.7772 15.8521C11.1793 15.8521 11.4923 15.9766 11.716 16.2255 11.9398 16.4744 12.0517 16.7967 12.0517 17.1923V17.2434C12.0517 17.6407 11.9398 17.9634 11.716 18.2115 11.4923 18.4596 11.1809 18.5836 10.782 18.5836 10.3783 18.5836 10.0645 18.4596 9.84071 18.2115 9.61693 17.9634 9.50505 17.6407 9.50505 17.2434V17.1923C9.50505 16.7967 9.61693 16.4744 9.84071 16.2255 10.0645 15.9766 10.3766 15.8521 10.7772 15.8521ZM10.7772 16.4845C10.615 16.4845 10.4995 16.5494 10.4305 16.6791 10.3616 16.8088 10.3272 16.9799 10.3272 17.1923V17.2434C10.3272 17.4639 10.3616 17.637 10.4305 17.7627 10.4995 17.8884 10.6166 17.9512 10.782 17.9512 10.9426 17.9512 11.0577 17.888 11.1274 17.7615 11.1855 17.6561 11.2194 17.5186 11.2291 17.349L11.232 17.1923C11.232 16.9783 11.1971 16.8068 11.1274 16.6779 11.0577 16.549 10.9409 16.4845 10.7772 16.4845ZM13.1923 16.2093 13.2022 16.2705C13.2882 16.1391 13.3944 16.0365 13.5209 15.9628 13.6473 15.889 13.7884 15.8521 13.9441 15.8521 14.2019 15.8521 14.4034 15.9397 14.5485 16.1148 14.6937 16.2899 14.7662 16.568 14.7662 16.9491V18.1215C14.7662 18.3485 14.5822 18.5326 14.3552 18.5326 14.1281 18.5326 13.9441 18.3485 13.9441 18.1215V16.9467C13.9441 16.7796 13.9173 16.6609 13.8638 16.5903 13.8103 16.5198 13.7325 16.4845 13.6303 16.4845 13.5428 16.4845 13.4641 16.4999 13.3944 16.5307 13.3247 16.5615 13.2663 16.6053 13.2193 16.6621V18.1227C13.2193 18.3491 13.0358 18.5326 12.8094 18.5326 12.5831 18.5326 12.3996 18.3491 12.3996 18.1227V16.2863C12.3996 16.0927 12.5422 15.9325 12.7281 15.9049L12.7995 15.9007C12.9884 15.9007 13.149 16.0308 13.1923 16.2093ZM16.1573 15.6576V15.9008H16.2886C16.4458 15.9008 16.5732 16.0282 16.5732 16.1854 16.5732 16.3426 16.4458 16.47 16.2886 16.47H16.1573V17.6764C16.1573 17.7705 16.1763 17.8382 16.2144 17.8795 16.2994 17.9717 16.3615 17.9549 16.5659 17.9172 16.7703 17.8795 16.8309 18.3672 16.6218 18.5253 16.4127 18.6834 15.7829 18.6115 15.5455 18.3672 15.4053 18.2229 15.3351 17.9943 15.3351 17.6813V16.47H15.2524C15.0953 16.47 14.9679 16.3426 14.9679 16.1854 14.9679 16.0282 15.0953 15.9008 15.2524 15.9008H15.3351V15.6576C15.3351 15.4305 15.5192 15.2465 15.7462 15.2465 15.9732 15.2465 16.1573 15.4305 16.1573 15.6576Z"
36
+ 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
37
  fill={color}
38
38
  />
39
39
  </svg>
@@ -21,7 +21,13 @@ export const IconImagePhotoPlusSolid = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- 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 7ZM16.25 12C16.25 11.5858 15.9142 11.25 15.5 11.25C15.0858 11.25 14.75 11.5858 14.75 12V14.25H12.5C12.0858 14.25 11.75 14.5858 11.75 15C11.75 15.4142 12.0858 15.75 12.5 15.75H14.75V18C14.75 18.4142 15.0858 18.75 15.5 18.75C15.9142 18.75 16.25 18.4142 16.25 18V15.75H18.5C18.9142 15.75 19.25 15.4142 19.25 15C19.25 14.5858 18.9142 14.25 18.5 14.25H16.25V12Z"
24
+ 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"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M16.25 12C16.25 11.5858 15.9142 11.25 15.5 11.25C15.0858 11.25 14.75 11.5858 14.75 12V14.25H12.5C12.0858 14.25 11.75 14.5858 11.75 15C11.75 15.4142 12.0858 15.75 12.5 15.75H14.75V18C14.75 18.4142 15.0858 18.75 15.5 18.75C15.9142 18.75 16.25 18.4142 16.25 18V15.75H18.5C18.9142 15.75 19.25 15.4142 19.25 15C19.25 14.5858 18.9142 14.25 18.5 14.25H16.25V12Z"
25
31
  fill={color}
26
32
  fillRule="evenodd"
27
33
  clipRule="evenodd"
@@ -151,8 +151,7 @@
151
151
  { "componentName": "IconClickSolid" },
152
152
  { "componentName": "IconPuzzlePieceSolid" },
153
153
  { "componentName": "IconKeyboardSolid" },
154
- { "componentName": "IconCloseDisCircleSolid" },
155
- { "componentName": "IconArrowDisLeftCircleSolid" },
154
+ { "componentName": "IconArrowLeftCircleSolid" },
156
155
  { "componentName": "IconFontAddSolid" },
157
156
  { "componentName": "IconFontSolid" },
158
157
  { "componentName": "IconQrCodeSolid" },
@@ -149,8 +149,7 @@ export { default as IconSwatchMinusSolid } from "./default/icon-swatch-minus-sol
149
149
  export { default as IconClickSolid } from "./default/icon-click-solid";
150
150
  export { default as IconPuzzlePieceSolid } from "./default/icon-puzzle-piece-solid";
151
151
  export { default as IconKeyboardSolid } from "./default/icon-keyboard-solid";
152
- export { default as IconCloseDisCircleSolid } from "./default/icon-close-dis-circle-solid";
153
- export { default as IconArrowDisLeftCircleSolid } from "./default/icon-arrow-dis-left-circle-solid";
152
+ export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
154
153
  export { default as IconFontAddSolid } from "./default/icon-font-add-solid";
155
154
  export { default as IconFontSolid } from "./default/icon-font-solid";
156
155
  export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
@@ -0,0 +1,36 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconArrowLeftCircleSolid = 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-shein-icon customeow-shein-icon-icon-arrow-left-circle-solid`,
14
+ };
15
+ return (
16
+ <svg
17
+ viewBox="0 0 20 20"
18
+ fill="none"
19
+ xmlns="http://www.w3.org/2000/svg"
20
+ {...props}
21
+ ref={forwardedRef}
22
+ >
23
+ <path
24
+ d="M2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10ZM9.81699 7.94195C10.0611 7.69787 10.0611 7.30215 9.81699 7.05807C9.57292 6.81399 9.17719 6.81399 8.93311 7.05807L6.43311 9.55807C6.18903 9.80215 6.18903 10.1979 6.43311 10.442L8.93311 12.942C9.17719 13.186 9.57291 13.186 9.81699 12.942C10.0611 12.6979 10.0611 12.3021 9.81699 12.0581L8.38393 10.625H13.125C13.4702 10.625 13.75 10.3452 13.75 10C13.75 9.65483 13.4702 9.37501 13.125 9.37501H8.38393L9.81699 7.94195Z"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ </svg>
30
+ );
31
+ }
32
+ );
33
+
34
+ IconArrowLeftCircleSolid.displayName = "IconArrowLeftCircleSolid";
35
+
36
+ export default IconArrowLeftCircleSolid;
@@ -14,18 +14,18 @@ export const IconFontAddSolid = forwardRef<SVGSVGElement, IconProps>(
14
14
  };
15
15
  return (
16
16
  <svg
17
- viewBox="0 0 24 24"
17
+ viewBox="0 0 20 20"
18
18
  fill="none"
19
19
  xmlns="http://www.w3.org/2000/svg"
20
20
  {...props}
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M10.575 9.50119H9.54702C9.52841 9.50119 9.51585 9.48198 9.52315 9.46467L9.96667 8.41228C10.0026 8.32712 10.122 8.32724 10.1577 8.41247L10.5989 9.46471C10.6061 9.48202 10.5935 9.50119 10.575 9.50119ZM14.9842 11.3971C14.6441 11.4573 14.26 11.4233 14.16 11.1233 14.06 10.8233 14.38 10.6833 14.6 10.6233 14.82 10.5633 15.4796 10.5033 15.94 10.5033 15.94 10.7381 15.74 11.2633 14.9842 11.3971Z"
24
+ d="M8.81251 7.91767H7.95589C7.94039 7.91767 7.92992 7.90166 7.936 7.88723L8.3056 7.01025C8.33551 6.93928 8.43501 6.93937 8.46479 7.0104L8.83242 7.88727C8.83846 7.90169 8.828 7.91767 8.81251 7.91767ZM12.4868 9.4976C12.2035 9.54775 11.8834 9.51946 11.8001 9.26946 11.7167 9.01946 11.9834 8.9028 12.1667 8.8528 12.3501 8.8028 12.8997 8.7528 13.2834 8.7528 13.2834 8.94844 13.1167 9.38613 12.4868 9.4976Z"
25
25
  fill={color}
26
26
  />
27
27
  <path
28
- d="M6 2.5C4.89543 2.5 4 3.39543 4 4.5V19.5C4 20.6046 4.89543 21.5 6 21.5H19C20.1046 21.5 21 20.6046 21 19.5V9.27797C21 8.77758 20.8124 8.29538 20.4743 7.92652L16.3918 3.47283C15.8235 2.85294 15.0212 2.5 14.1803 2.5H6ZM12.8546 14.1779C12.7406 14.064 12.5861 14 12.425 14C12.2639 14 12.1093 14.064 11.9954 14.1779L9.97041 16.2029C9.73317 16.4402 9.73317 16.8248 9.97041 17.0621C10.2077 17.2993 10.5923 17.2993 10.8296 17.0621L11.8175 16.0741L11.8175 18.3925C11.8175 18.728 12.0895 19 12.425 19C12.7605 19 13.0325 18.728 13.0325 18.3925L13.0325 16.0741L14.0204 17.0621C14.2577 17.2993 14.6423 17.2993 14.8796 17.0621C15.1168 16.8248 15.1168 16.4402 14.8796 16.2029L12.8546 14.1779ZM11.1037 10.6689L11.738 12.1819C11.8342 12.4113 12.0615 12.598 12.3064 12.56C13.08 12.44 12.86 11.76 12.86 11.76L10.6393 6.38319C10.4247 5.87227 9.70111 5.87227 9.48648 6.3832L7.24854 11.7105C7.07847 12.1154 7.37663 12.56 7.8126 12.56C8.05822 12.56 8.28061 12.4129 8.37638 12.1857L9.01566 10.6688C9.01974 10.6591 9.02913 10.6529 9.03953 10.6529H11.0798C11.0902 10.6529 11.0996 10.6592 11.1037 10.6689ZM15.1008 7.56335C14.0216 7.50335 13.24 8.26334 13.04 8.80335C12.9234 9.15551 13.1268 9.36596 13.36 9.48334C13.5933 9.60073 13.98 9.56334 14.16 9.28334L14.1745 9.26075C14.351 8.98562 14.5545 8.66831 15.08 8.70334C15.68 8.74334 15.96 9.16334 15.96 9.36334C15.4935 9.36334 14.88 9.36715 14.14 9.54334C13.4 9.71953 12.88 10.2799 12.88 11.0733C12.88 11.5266 13.16 11.9172 13.46 12.1633C13.74 12.3931 14.2396 12.5633 14.7 12.5633C14.8 12.5633 15.5796 12.5467 16.04 12.2633C16.04 12.2859 16.22 12.5857 16.6 12.5633C16.98 12.541 17.2 12.2211 17.2 12.0033V9.54319C17.2 8.34505 16.18 7.62334 15.1008 7.56335Z"
28
+ d="M5.00004 2.08334C4.07957 2.08334 3.33337 2.82954 3.33337 3.75001V16.25C3.33337 17.1705 4.07957 17.9167 5.00004 17.9167H15.8334C16.7538 17.9167 17.5 17.1705 17.5 16.25V7.73165C17.5 7.31466 17.3437 6.91282 17.062 6.60544L13.6598 2.89403C13.1863 2.37746 12.5177 2.08334 11.817 2.08334H5.00004ZM10.7122 11.815C10.6172 11.72 10.4885 11.6667 10.3542 11.6667C10.2199 11.6667 10.0912 11.72 9.99622 11.815L8.30872 13.5025C8.11102 13.7002 8.11102 14.0207 8.30872 14.2184C8.50642 14.4161 8.82697 14.4161 9.02467 14.2184L9.84794 13.3951L9.84794 15.3271C9.84794 15.6067 10.0746 15.8333 10.3542 15.8333C10.6338 15.8333 10.8604 15.6067 10.8604 15.3271L10.8604 13.3951L11.6837 14.2184C11.8814 14.4161 12.202 14.4161 12.3997 14.2184C12.5974 14.0207 12.5974 13.7002 12.3997 13.5025L10.7122 11.815ZM9.25312 8.89073L9.78172 10.1516C9.8619 10.3428 10.0513 10.4983 10.2554 10.4667C10.9001 10.3667 10.7167 9.80001 10.7167 9.80001L8.86612 5.31934C8.68726 4.89357 8.0843 4.89357 7.90544 5.31934L6.04049 9.7588C5.89877 10.0962 6.14723 10.4667 6.51054 10.4667C6.71523 10.4667 6.90055 10.3441 6.98036 10.1547L7.51309 8.89069C7.51649 8.88263 7.52432 8.8774 7.53298 8.8774H9.23321C9.24189 8.8774 9.24973 8.88265 9.25312 8.89073ZM12.584 6.3028C11.6847 6.2528 11.0334 6.88613 10.8667 7.33613C10.7695 7.6296 10.939 7.80498 11.1334 7.9028C11.3278 8.00062 11.6501 7.96946 11.8001 7.73613L11.8121 7.7173C11.9592 7.48803 12.1288 7.2236 12.5667 7.2528C13.0667 7.28613 13.3001 7.63613 13.3001 7.8028C12.9113 7.8028 12.4001 7.80597 11.7834 7.9528C11.1667 8.09962 10.7334 8.56659 10.7334 9.22774C10.7334 9.60553 10.9667 9.931 11.2167 10.1361C11.4501 10.3276 11.8664 10.4695 12.2501 10.4695C12.3334 10.4695 12.983 10.4556 13.3667 10.2195C13.3667 10.2382 13.5167 10.4881 13.8334 10.4695C14.1501 10.4508 14.3334 10.1842 14.3334 10.0028V7.95267C14.3334 6.95422 13.4834 6.3528 12.584 6.3028Z"
29
29
  fill={color}
30
30
  fillRule="evenodd"
31
31
  clipRule="evenodd"
@@ -14,26 +14,26 @@ export const IconFontSolid = forwardRef<SVGSVGElement, IconProps>(
14
14
  };
15
15
  return (
16
16
  <svg
17
- viewBox="0 0 24 24"
17
+ viewBox="0 0 20 20"
18
18
  fill="none"
19
19
  xmlns="http://www.w3.org/2000/svg"
20
20
  {...props}
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M4.73529 1.37842C3.50078 1.37842 2.5 2.37919 2.5 3.6137V20.3783C2.5 21.6128 3.50078 22.6136 4.73529 22.6136H19.2647C20.4992 22.6136 21.5 21.6128 21.5 20.3783V8.95374C21.5 8.39449 21.2904 7.85556 20.9125 7.44331L16.3496 2.46569C15.7145 1.77288 14.8178 1.37842 13.878 1.37842H4.73529Z"
24
+ d="M3.94612 1.14868C2.91735 1.14868 2.08337 1.98266 2.08337 3.01141V16.9819C2.08337 18.0107 2.91735 18.8446 3.94612 18.8446H16.054C17.0827 18.8446 17.9167 18.0107 17.9167 16.9819V7.46145C17.9167 6.99541 17.742 6.5463 17.4271 6.20275L13.6247 2.05474C13.0955 1.4774 12.3482 1.14868 11.565 1.14868H3.94612Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
28
28
  />
29
29
  <path
30
- d="M10.674 10.5497L11.3507 12.1638C11.4534 12.4086 11.6958 12.6077 11.9571 12.5672C12.7824 12.4392 12.5477 11.7137 12.5477 11.7137L10.1786 5.97759C9.94958 5.43252 9.17767 5.43252 8.94869 5.97759L6.56117 11.661C6.37973 12.0929 6.69782 12.5672 7.16293 12.5672C7.42497 12.5672 7.66222 12.4103 7.76439 12.1679L8.4464 10.5496C8.45075 10.5393 8.46077 10.5326 8.47186 10.5326H10.6485C10.6596 10.5326 10.6697 10.5393 10.674 10.5497ZM14.9382 7.23661C13.7869 7.1726 12.9531 7.98339 12.7397 8.55948C12.6153 8.93518 12.8323 9.1597 13.0811 9.28493C13.33 9.41016 13.7426 9.37028 13.9346 9.07156L13.9501 9.04745C14.1383 8.75394 14.3554 8.41542 14.9161 8.4528C15.5562 8.49547 15.8549 8.94354 15.8549 9.15691C15.3572 9.15691 14.7027 9.16097 13.9133 9.34894C13.1238 9.5369 12.569 10.1347 12.569 10.9811C12.569 11.4648 12.8678 11.8814 13.1878 12.144C13.4865 12.3891 14.0195 12.5708 14.5107 12.5708C14.6174 12.5708 15.449 12.553 15.9403 12.2507C15.9403 12.2748 16.1323 12.5946 16.5377 12.5708C16.9431 12.5469 17.1778 12.2056 17.1778 11.9733V9.34878C17.1778 8.07056 16.0896 7.30062 14.9382 7.23661ZM9.01328 9.30397H10.1099C10.1298 9.30397 10.1432 9.28351 10.1354 9.26505L9.66477 8.14248C9.62665 8.05156 9.49927 8.05143 9.46098 8.14229L8.98781 9.265C8.98003 9.28347 8.99343 9.30397 9.01328 9.30397ZM14.8138 11.3266C14.451 11.3908 14.0413 11.3546 13.9346 11.0345C13.8279 10.7145 14.1693 10.5651 14.404 10.5011C14.6387 10.4371 15.3424 10.3731 15.8336 10.3731C15.8336 10.6236 15.6202 11.1839 14.8138 11.3266Z"
30
+ 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
31
  fill={color}
32
32
  fillRule="evenodd"
33
33
  clipRule="evenodd"
34
34
  />
35
35
  <path
36
- d="M8.86436 17.1072H7.88413V18.1215C7.88413 18.3485 7.70009 18.5326 7.47307 18.5326 7.24605 18.5326 7.06201 18.3485 7.06201 18.1215V15.6137C7.06201 15.2698 7.34079 14.9911 7.68468 14.9911H9.11246C9.28709 14.9911 9.42866 15.1326 9.42866 15.3073 9.42866 15.4819 9.28709 15.6235 9.11246 15.6235H7.88413V16.4748H8.86436C9.039 16.4748 9.18056 16.6164 9.18056 16.791 9.18056 16.9657 9.039 17.1072 8.86436 17.1072ZM10.7772 15.8521C11.1793 15.8521 11.4923 15.9766 11.716 16.2255 11.9398 16.4744 12.0517 16.7967 12.0517 17.1923V17.2434C12.0517 17.6407 11.9398 17.9634 11.716 18.2115 11.4923 18.4596 11.1809 18.5836 10.782 18.5836 10.3783 18.5836 10.0645 18.4596 9.84071 18.2115 9.61693 17.9634 9.50505 17.6407 9.50505 17.2434V17.1923C9.50505 16.7967 9.61693 16.4744 9.84071 16.2255 10.0645 15.9766 10.3766 15.8521 10.7772 15.8521ZM10.7772 16.4845C10.615 16.4845 10.4995 16.5494 10.4305 16.6791 10.3616 16.8088 10.3272 16.9799 10.3272 17.1923V17.2434C10.3272 17.4639 10.3616 17.637 10.4305 17.7627 10.4995 17.8884 10.6166 17.9512 10.782 17.9512 10.9426 17.9512 11.0577 17.888 11.1274 17.7615 11.1855 17.6561 11.2194 17.5186 11.2291 17.349L11.232 17.1923C11.232 16.9783 11.1971 16.8068 11.1274 16.6779 11.0577 16.549 10.9409 16.4845 10.7772 16.4845ZM13.1923 16.2093 13.2022 16.2705C13.2882 16.1391 13.3944 16.0365 13.5209 15.9628 13.6473 15.889 13.7884 15.8521 13.9441 15.8521 14.2019 15.8521 14.4034 15.9397 14.5485 16.1148 14.6937 16.2899 14.7662 16.568 14.7662 16.9491V18.1215C14.7662 18.3485 14.5822 18.5326 14.3552 18.5326 14.1281 18.5326 13.9441 18.3485 13.9441 18.1215V16.9467C13.9441 16.7796 13.9173 16.6609 13.8638 16.5903 13.8103 16.5198 13.7325 16.4845 13.6303 16.4845 13.5428 16.4845 13.4641 16.4999 13.3944 16.5307 13.3247 16.5615 13.2663 16.6053 13.2193 16.6621V18.1227C13.2193 18.3491 13.0358 18.5326 12.8094 18.5326 12.5831 18.5326 12.3996 18.3491 12.3996 18.1227V16.2863C12.3996 16.0927 12.5422 15.9325 12.7281 15.9049L12.7995 15.9007C12.9884 15.9007 13.149 16.0308 13.1923 16.2093ZM16.1573 15.6576V15.9008H16.2886C16.4458 15.9008 16.5732 16.0282 16.5732 16.1854 16.5732 16.3426 16.4458 16.47 16.2886 16.47H16.1573V17.6764C16.1573 17.7705 16.1763 17.8382 16.2144 17.8795 16.2994 17.9717 16.3615 17.9549 16.5659 17.9172 16.7703 17.8795 16.8309 18.3672 16.6218 18.5253 16.4127 18.6834 15.7829 18.6115 15.5455 18.3672 15.4053 18.2229 15.3351 17.9943 15.3351 17.6813V16.47H15.2524C15.0953 16.47 14.9679 16.3426 14.9679 16.1854 14.9679 16.0282 15.0953 15.9008 15.2524 15.9008H15.3351V15.6576C15.3351 15.4305 15.5192 15.2465 15.7462 15.2465 15.9732 15.2465 16.1573 15.4305 16.1573 15.6576Z"
36
+ 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
37
  fill={color}
38
38
  />
39
39
  </svg>
@@ -21,7 +21,13 @@ export const IconImagePhotoPlusSolid = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- 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 7ZM16.25 12C16.25 11.5858 15.9142 11.25 15.5 11.25C15.0858 11.25 14.75 11.5858 14.75 12V14.25H12.5C12.0858 14.25 11.75 14.5858 11.75 15C11.75 15.4142 12.0858 15.75 12.5 15.75H14.75V18C14.75 18.4142 15.0858 18.75 15.5 18.75C15.9142 18.75 16.25 18.4142 16.25 18V15.75H18.5C18.9142 15.75 19.25 15.4142 19.25 15C19.25 14.5858 18.9142 14.25 18.5 14.25H16.25V12Z"
24
+ 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"
25
+ fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
28
+ />
29
+ <path
30
+ d="M16.25 12C16.25 11.5858 15.9142 11.25 15.5 11.25C15.0858 11.25 14.75 11.5858 14.75 12V14.25H12.5C12.0858 14.25 11.75 14.5858 11.75 15C11.75 15.4142 12.0858 15.75 12.5 15.75H14.75V18C14.75 18.4142 15.0858 18.75 15.5 18.75C15.9142 18.75 16.25 18.4142 16.25 18V15.75H18.5C18.9142 15.75 19.25 15.4142 19.25 15C19.25 14.5858 18.9142 14.25 18.5 14.25H16.25V12Z"
25
31
  fill={color}
26
32
  fillRule="evenodd"
27
33
  clipRule="evenodd"
@@ -151,8 +151,7 @@
151
151
  { "componentName": "IconClickSolid" },
152
152
  { "componentName": "IconPuzzlePieceSolid" },
153
153
  { "componentName": "IconKeyboardSolid" },
154
- { "componentName": "IconCloseDisCircleSolid" },
155
- { "componentName": "IconArrowDisLeftCircleSolid" },
154
+ { "componentName": "IconArrowLeftCircleSolid" },
156
155
  { "componentName": "IconFontAddSolid" },
157
156
  { "componentName": "IconFontSolid" },
158
157
  { "componentName": "IconQrCodeSolid" },
@@ -149,8 +149,7 @@ export { default as IconSwatchMinusSolid } from "./default/icon-swatch-minus-sol
149
149
  export { default as IconClickSolid } from "./default/icon-click-solid";
150
150
  export { default as IconPuzzlePieceSolid } from "./default/icon-puzzle-piece-solid";
151
151
  export { default as IconKeyboardSolid } from "./default/icon-keyboard-solid";
152
- export { default as IconCloseDisCircleSolid } from "./default/icon-close-dis-circle-solid";
153
- export { default as IconArrowDisLeftCircleSolid } from "./default/icon-arrow-dis-left-circle-solid";
152
+ export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
154
153
  export { default as IconFontAddSolid } from "./default/icon-font-add-solid";
155
154
  export { default as IconFontSolid } from "./default/icon-font-solid";
156
155
  export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconArrowLeftCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconArrowLeftCircleSolid;
@@ -149,8 +149,7 @@ export { default as IconSwatchMinusSolid } from "./default/icon-swatch-minus-sol
149
149
  export { default as IconClickSolid } from "./default/icon-click-solid";
150
150
  export { default as IconPuzzlePieceSolid } from "./default/icon-puzzle-piece-solid";
151
151
  export { default as IconKeyboardSolid } from "./default/icon-keyboard-solid";
152
- export { default as IconCloseDisCircleSolid } from "./default/icon-close-dis-circle-solid";
153
- export { default as IconArrowDisLeftCircleSolid } from "./default/icon-arrow-dis-left-circle-solid";
152
+ export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
154
153
  export { default as IconFontAddSolid } from "./default/icon-font-add-solid";
155
154
  export { default as IconFontSolid } from "./default/icon-font-solid";
156
155
  export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconArrowLeftCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconArrowLeftCircleSolid;
@@ -149,8 +149,7 @@ export { default as IconSwatchMinusSolid } from "./default/icon-swatch-minus-sol
149
149
  export { default as IconClickSolid } from "./default/icon-click-solid";
150
150
  export { default as IconPuzzlePieceSolid } from "./default/icon-puzzle-piece-solid";
151
151
  export { default as IconKeyboardSolid } from "./default/icon-keyboard-solid";
152
- export { default as IconCloseDisCircleSolid } from "./default/icon-close-dis-circle-solid";
153
- export { default as IconArrowDisLeftCircleSolid } from "./default/icon-arrow-dis-left-circle-solid";
152
+ export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
154
153
  export { default as IconFontAddSolid } from "./default/icon-font-add-solid";
155
154
  export { default as IconFontSolid } from "./default/icon-font-solid";
156
155
  export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
@@ -1,3 +0,0 @@
1
- import type { IconProps } from '../../types';
2
- export declare const IconArrowDisLeftCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
- export default IconArrowDisLeftCircleSolid;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from '../../types';
2
- export declare const IconCloseDisCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
- export default IconCloseDisCircleSolid;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from '../../types';
2
- export declare const IconArrowDisLeftCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
- export default IconArrowDisLeftCircleSolid;
@@ -1,3 +0,0 @@
1
- import type { IconProps } from '../../types';
2
- export declare const IconCloseDisCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
- export default IconCloseDisCircleSolid;