@sunzi/icon 1.0.34 → 1.0.36
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.
- package/es/customeow/default/icon-app-squares-solid.js +2 -0
- package/es/customeow/default/icon-app-squares-solid.js.map +1 -0
- package/es/customeow/default/icon-arrow-left-solid.js +1 -1
- package/es/customeow/default/icon-arrow-left-solid.js.map +1 -1
- package/es/customeow/default/icon-list-solid.js +2 -0
- package/es/customeow/default/icon-list-solid.js.map +1 -0
- package/es/customeow/default/icon-preview-placeholder.js +2 -0
- package/es/customeow/default/icon-preview-placeholder.js.map +1 -0
- package/es/customeow/default/icon-print-area-svg-bicolor-solid.js +1 -1
- package/es/customeow/default/icon-print-area-svg-bicolor-solid.js.map +1 -1
- package/es/customeow/default/icon-safe-area-svg-bicolor-solid.js +1 -1
- package/es/customeow/default/icon-safe-area-svg-bicolor-solid.js.map +1 -1
- package/es/customeow/index.js +1 -1
- package/es/customeow-shein/default/icon-system-too-old.js +2 -0
- package/es/customeow-shein/default/icon-system-too-old.js.map +1 -0
- package/es/customeow-shein/index.js +1 -1
- package/manifest.json +252 -47
- package/package.json +1 -1
- package/src/customeow/default/icon-app-squares-solid.tsx +34 -0
- package/src/customeow/default/icon-arrow-left-solid.tsx +1 -1
- package/src/customeow/default/icon-list-solid.tsx +34 -0
- package/src/customeow/default/icon-preview-placeholder.tsx +46 -0
- package/src/customeow/default/icon-print-area-svg-bicolor-solid.tsx +11 -6
- package/src/customeow/default/icon-safe-area-svg-bicolor-solid.tsx +11 -8
- package/src/customeow/index.json +4 -1
- package/src/customeow/index.tsx +3 -0
- package/src/customeow-shein/default/icon-system-too-old.tsx +83 -0
- package/src/customeow-shein/index.json +1 -1
- package/src/customeow-shein/index.tsx +1 -1
- package/types/customeow/default/icon-app-squares-solid.d.ts +3 -0
- package/types/customeow/default/icon-list-solid.d.ts +3 -0
- package/types/customeow/default/icon-preview-placeholder.d.ts +3 -0
- package/types/customeow/index.d.ts +3 -0
- package/types/customeow-shein/default/icon-system-too-old.d.ts +3 -0
- package/types/customeow-shein/index.d.ts +1 -1
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconSystemTooOld = 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-system-too-old`,
|
|
14
|
+
};
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
viewBox="0 0 120 120"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
{...props}
|
|
21
|
+
ref={forwardedRef}
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
d="M4 108H10.1508M14.1454 108H108.562M113.425 108H116M74 59V43C74 41.8954 73.1046 41 72 41H40C38.8954 41 38 41.8954 38 43V95C38 96.1046 38.8954 97 40 97H72C73.1046 97 74 96.1046 74 95V91.5"
|
|
25
|
+
stroke={color}
|
|
26
|
+
strokeWidth="1.5"
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M71 72.3892V77.6073M58.4119 82.3045C57.241 84.3918 58.7058 87 61.049 87H80.951C83.2942 87 84.759 84.3918 83.5881 82.3045L73.637 64.5663C72.4655 62.4779 69.5345 62.4779 68.363 64.5663L58.4119 82.3045ZM71 81.7819H71.0101V81.7923H71V81.7819Z"
|
|
32
|
+
stroke={color}
|
|
33
|
+
strokeWidth="1.5"
|
|
34
|
+
strokeLinecap="round"
|
|
35
|
+
strokeLinejoin="round"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
stroke={color}
|
|
39
|
+
d="M51.75 45.25 60.25 45.25"
|
|
40
|
+
strokeWidth="1.5"
|
|
41
|
+
strokeLinecap="round"
|
|
42
|
+
strokeLinejoin="round"
|
|
43
|
+
/>
|
|
44
|
+
<path
|
|
45
|
+
d="M76 20L79 23M79 20L76 23"
|
|
46
|
+
stroke={color}
|
|
47
|
+
strokeWidth="1.5"
|
|
48
|
+
strokeLinecap="round"
|
|
49
|
+
strokeLinejoin="round"
|
|
50
|
+
/>
|
|
51
|
+
<circle
|
|
52
|
+
cx="94.8"
|
|
53
|
+
cy="27.8"
|
|
54
|
+
r="1.8"
|
|
55
|
+
stroke={color}
|
|
56
|
+
strokeWidth="1.2"
|
|
57
|
+
strokeLinecap="round"
|
|
58
|
+
strokeLinejoin="round"
|
|
59
|
+
/>
|
|
60
|
+
<circle
|
|
61
|
+
cx="36.2"
|
|
62
|
+
cy="17.2"
|
|
63
|
+
r="1.2"
|
|
64
|
+
fill={color}
|
|
65
|
+
stroke={color}
|
|
66
|
+
strokeLinecap="round"
|
|
67
|
+
strokeLinejoin="round"
|
|
68
|
+
/>
|
|
69
|
+
<path
|
|
70
|
+
d="M20 32H24M22 34 22 30"
|
|
71
|
+
stroke={color}
|
|
72
|
+
strokeWidth="1.5"
|
|
73
|
+
strokeLinecap="round"
|
|
74
|
+
strokeLinejoin="round"
|
|
75
|
+
/>
|
|
76
|
+
</svg>
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
);
|
|
80
|
+
|
|
81
|
+
IconSystemTooOld.displayName = "IconSystemTooOld";
|
|
82
|
+
|
|
83
|
+
export default IconSystemTooOld;
|
|
@@ -65,4 +65,4 @@ export { default as IconHistoryEmpty } from "./default/icon-history-empty";
|
|
|
65
65
|
export { default as IconImportPsdEmpty } from "./default/icon-import-psd-empty";
|
|
66
66
|
export { default as IconImportDesignTemplateEmpty } from "./default/icon-import-design-template-empty";
|
|
67
67
|
export { default as Icon3DModelEmpty } from "./default/icon-3-d-model-empty";
|
|
68
|
-
export { default as
|
|
68
|
+
export { default as IconSystemTooOld } from "./default/icon-system-too-old";
|
|
@@ -262,9 +262,12 @@ export { default as IconToothSolid } from "./default/icon-tooth-solid";
|
|
|
262
262
|
export { default as IconLogoutSolid } from "./default/icon-logout-solid";
|
|
263
263
|
export { default as IconLightSolid } from "./default/icon-light-solid";
|
|
264
264
|
export { default as IconTypeInsertSolid } from "./default/icon-type-insert-solid";
|
|
265
|
+
export { default as IconAppSquaresSolid } from "./default/icon-app-squares-solid";
|
|
266
|
+
export { default as IconListSolid } from "./default/icon-list-solid";
|
|
265
267
|
export { default as IconArrowLeftSolid } from "./default/icon-arrow-left-solid";
|
|
266
268
|
export { default as IconArrowDownloadSolid } from "./default/icon-arrow-download-solid";
|
|
267
269
|
export { default as IconArrowUploadSolid } from "./default/icon-arrow-upload-solid";
|
|
268
270
|
export { default as IconArrowUpRightSolid } from "./default/icon-arrow-up-right-solid";
|
|
269
271
|
export { default as IconImportSolid } from "./default/icon-import-solid";
|
|
270
272
|
export { default as IconLocalSolid } from "./default/icon-local-solid";
|
|
273
|
+
export { default as IconPreviewPlaceholder } from "./default/icon-preview-placeholder";
|
|
@@ -65,4 +65,4 @@ export { default as IconHistoryEmpty } from "./default/icon-history-empty";
|
|
|
65
65
|
export { default as IconImportPsdEmpty } from "./default/icon-import-psd-empty";
|
|
66
66
|
export { default as IconImportDesignTemplateEmpty } from "./default/icon-import-design-template-empty";
|
|
67
67
|
export { default as Icon3DModelEmpty } from "./default/icon-3-d-model-empty";
|
|
68
|
-
export { default as
|
|
68
|
+
export { default as IconSystemTooOld } from "./default/icon-system-too-old";
|