@sunzi/icon 1.1.26 → 1.1.27
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-data-hide-outline.js +1 -0
- package/es/customeow/default/icon-document-text-solid.js +1 -1
- package/es/customeow/default/icon-house-solid.js +1 -0
- package/es/customeow/default/icon-if-else-outline.js +1 -0
- package/es/customeow/default/icon-logo-erp-solid.js +1 -0
- package/es/customeow/default/icon-logo-jit-solid.js +1 -0
- package/es/customeow/default/icon-logo-wechat-solid.js +1 -0
- package/es/customeow/index.js +1 -1
- package/manifest.json +440 -36
- package/package.json +1 -1
- package/src/customeow/default/icon-data-hide-outline.tsx +44 -0
- package/src/customeow/default/icon-document-text-solid.tsx +5 -1
- package/src/customeow/default/icon-house-solid.tsx +36 -0
- package/src/customeow/default/icon-if-else-outline.tsx +34 -0
- package/src/customeow/default/icon-logo-erp-solid.tsx +36 -0
- package/src/customeow/default/icon-logo-jit-solid.tsx +39 -0
- package/src/customeow/default/icon-logo-wechat-solid.tsx +42 -0
- package/src/customeow/index.json +6 -2
- package/src/customeow/index.tsx +6 -2
- package/types/customeow/default/icon-data-hide-outline.d.ts +3 -0
- package/types/customeow/default/icon-house-solid.d.ts +3 -0
- package/types/customeow/default/icon-if-else-outline.d.ts +3 -0
- package/types/customeow/default/icon-logo-erp-solid.d.ts +3 -0
- package/types/customeow/default/icon-logo-jit-solid.d.ts +3 -0
- package/types/customeow/default/icon-logo-wechat-solid.d.ts +3 -0
- package/types/customeow/index.d.ts +6 -2
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconHouseSolid = 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-house-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="M0.544605 7.40411C0.215506 7.65564 0.152624 8.12633 0.404153 8.45543C0.655683 8.78453 1.12637 8.84741 1.45547 8.59588L3.00005 7.41536V16.5C3.00005 17.3284 3.67162 18 4.50005 18H15.5C16.3285 18 17 17.3284 17 16.5V7.40418L18.5593 8.59588C18.8884 8.84741 19.359 8.78453 19.6106 8.45543C19.8621 8.12633 19.7992 7.65564 19.4701 7.40411L11.3737 1.216C10.5671 0.599547 9.44763 0.599549 8.64106 1.21601L0.544605 7.40411ZM6.64649 12.6464C6.84176 12.4512 7.15834 12.4512 7.3536 12.6464C8.81519 14.108 11.1849 14.108 12.6465 12.6464C12.8418 12.4512 13.1583 12.4512 13.3536 12.6464C13.5489 12.8417 13.5489 13.1583 13.3536 13.3535C11.5015 15.2057 8.49861 15.2057 6.64649 13.3535C6.45123 13.1583 6.45123 12.8417 6.64649 12.6464Z"
|
|
25
|
+
fill={color}
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
IconHouseSolid.displayName = "IconHouseSolid";
|
|
35
|
+
|
|
36
|
+
export default IconHouseSolid;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconIfElseOutline = 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-if-else-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 2.75C11.5858 2.75 11.25 3.08579 11.25 3.5C11.25 3.91421 11.5858 4.25 12 4.25H14.6893L9.68934 9.25H3C2.58579 9.25 2.25 9.58579 2.25 10C2.25 10.4142 2.58579 10.75 3 10.75H9.68934L14.6893 15.75H12C11.5858 15.75 11.25 16.0858 11.25 16.5C11.25 16.9142 11.5858 17.25 12 17.25H16.5C16.9142 17.25 17.25 16.9142 17.25 16.5V12C17.25 11.5858 16.9142 11.25 16.5 11.25C16.0858 11.25 15.75 11.5858 15.75 12V14.6893L11.0607 10L15.75 5.31066V8C15.75 8.41421 16.0858 8.75 16.5 8.75C16.9142 8.75 17.25 8.41421 17.25 8V3.5C17.25 3.08579 16.9142 2.75 16.5 2.75H12Z"
|
|
25
|
+
fill={color}
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
IconIfElseOutline.displayName = "IconIfElseOutline";
|
|
33
|
+
|
|
34
|
+
export default IconIfElseOutline;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconLogoErpSolid = 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-logo-erp-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="M8.07749 1.42186C4.64403 2.20104 3.12419 2.56885 3.12419 2.62055C3.12419 2.65144 3.87755 2.93129 4.79822 3.24239C5.71899 3.5535 7.26698 4.099 8.23838 4.45466L10.0044 5.10124L11.3113 4.62316C12.03 4.36018 13.588 3.80558 14.7736 3.39053C15.9592 2.97549 16.8673 2.61492 16.7916 2.58929C16.2866 2.4183 10.0254 1.10397 9.74978 1.11111C9.56156 1.11602 8.80902 1.25586 8.07749 1.42186ZM14.98 4.57038L11.6549 5.96713V8.50015C11.6549 10.4925 11.6794 11.0229 11.7695 10.9853C12.5738 10.65 17.9918 8.3971 18.1446 8.33433L18.3166 8.24968V5.70282C18.3166 4.30214 18.3292 3.15998 18.3166 3.16489C18.3041 3.16971 16.8089 3.80218 14.98 4.57038ZM1.68433 6.97107V10.2502L5.02754 11.7214L8.35268 13.1924V14.5194C8.35268 15.2493 8.32167 15.829 8.28388 15.8077C8.06217 15.6832 1.72708 12.7106 1.68433 12.7106C1.65581 12.7106 1.68433 13.1724 1.68433 13.7369V14.7633L3.10125 15.4677C3.89589 15.8552 5.7587 16.7811 7.24103 17.5252C8.72335 18.2694 9.97654 18.8668 9.98919 18.8528C10.0254 18.8125 10.0064 14.9725 9.98919 13.2333V11.6576L8.65079 11.0789C7.9067 10.7606 6.35879 10.1091 5.211 9.63088L3.12419 8.76151V7.52273V6.28395L3.55989 6.452C3.79949 6.54442 4.6354 6.86918 5.41738 7.17368C7.19663 7.86651 9.91636 8.8709 9.98919 8.8709C10.0194 8.8709 10.0033 8.36406 9.98919 7.74463V6.61835L9.49927 6.45441C9.24702 6.36422 7.40476 5.70576 5.40528 4.99114C3.40579 4.27652 1.71607 3.69181 1.68433 3.69181C1.6525 3.69181 1.67103 5.1675 1.68433 6.97107ZM14.9112 11.6771L11.609 13.1402L11.5846 15.6042C11.5712 16.9595 11.5851 18.0682 11.6153 18.0682C11.6457 18.0682 13.1736 17.3217 15.0107 16.4094L18.3166 14.7505V12.4805C18.3166 11.2318 18.3544 10.2111 18.3166 10.2122C18.2788 10.2132 16.7274 10.8723 14.9112 11.6771Z"
|
|
25
|
+
fill={color}
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
</svg>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
IconLogoErpSolid.displayName = "IconLogoErpSolid";
|
|
35
|
+
|
|
36
|
+
export default IconLogoErpSolid;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconLogoJitSolid = 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-logo-jit-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 fill={color} clipPath="url(#a)">
|
|
24
|
+
<path d="M11.9183 5.59453C12.0164 5.59594 12.1146 5.59736 12.2127 5.59736L12.4395 5.597C12.6555 5.59659 12.8715 5.59618 13.0874 5.59736 13.5014 5.59967 13.8022 5.38285 14.0085 4.98134 14.049 4.90233 14.0889 4.82288 14.1287 4.74343 14.1616 4.67777 14.1947 4.6118 14.2281 4.54638 14.3938 4.22063 14.1762 3.89488 13.9016 3.89358 13.7905 3.89306 13.6794 3.89239 13.5684 3.89172 13.0567 3.88864 12.5451 3.88556 12.0337 3.89734 11.7299 3.90429 11.4531 4.0348 11.2652 4.31941 11.1303 4.5235 11.0196 4.74986 10.9099 4.97408L10.9001 4.99409C10.7559 5.28899 11.0021 5.61749 11.2304 5.60272 11.459 5.5879 11.6887 5.59121 11.9183 5.59453ZM19.9996 6.58593C19.9997 6.55794 19.9997 6.52994 19.9999 6.50191 20.0019 6.22768 19.9515 6.1753 19.6867 6.1753L4.78153 6.17559C4.712 6.17559 4.64242 6.17535 4.57282 6.17511H4.57218C4.43241 6.17462 4.29225 6.17414 4.15243 6.17559 3.98475 6.17762 3.91498 6.25278 3.91356 6.4269 3.91256 6.53804 3.91256 6.64933 3.91327 6.76047 3.91469 6.94982 3.99214 7.0289 4.17773 7.03107 4.21352 7.03153 4.24938 7.03113 4.28524 7.03073 4.36243 7.02987 4.43962 7.029 4.51608 7.03673 4.66159 7.05153 4.72852 7.1798 4.67026 7.31589 4.65264 7.35754 4.63061 7.397 4.6083 7.43603 4.46592 7.68568 4.32308 7.93507 4.18024 8.18447 3.86989 8.72634 3.55953 9.26823 3.25377 9.81284 3.03976 10.194 2.74092 10.3877 2.30083 10.3697 2.02851 10.3586 1.75583 10.3609 1.48307 10.3633H1.48246C1.33999 10.3645 1.19734 10.3658 1.05486 10.3651.892866 10.3643.767958 10.4295.676727 10.5659.611868 10.6629.546668 10.7597.48147 10.8565.349011 11.0532.216438 11.25.0868563 11.4486.0460726 11.5113.00940995 11.5879.00244689 11.6614-.0239843 11.9363.165724 12.1162.47423 12.1162 1.00169 12.1164 1.52913 12.1162 2.05656 12.1161 3.19065 12.1157 4.3248 12.1154 5.45893 12.118 5.71074 12.1184 5.88354 12.0154 6.00816 11.7945 6.43948 11.03 6.87437 10.2674 7.30929 9.50477L7.54515 9.09113C7.89629 8.47506 8.24842 7.85928 8.6024 7.24509 8.73768 7.01032 9.07404 6.9562 9.27199 7.13612 9.46142 7.30849 9.49538 7.51903 9.33466 7.79776 9.06698 8.26223 8.80129 8.7279 8.5356 9.19354 8.12372 9.91542 7.71184 10.6373 7.29263 11.3546 7.10094 11.6822 7.29192 12.121 7.72747 12.1183 8.46859 12.1134 9.21001 12.1145 9.95139 12.1156L10.4254 12.1162C10.6403 12.1165 10.8024 12.0313 10.9109 11.8363 11.0306 11.6213 11.1532 11.4078 11.2758 11.1943L11.2768 11.1926C11.3222 11.1136 11.3676 11.0346 11.4128 10.9555L11.8775 10.1422C12.4231 9.18724 12.9688 8.23216 13.5153 7.27788 13.6543 7.03528 13.9357 6.95693 14.1595 7.09259 14.3781 7.22477 14.4401 7.50684 14.3044 7.74973L14.2193 7.90234C14.1231 8.07466 14.0269 8.24699 13.9301 8.41905 13.7394 8.75746 13.5488 9.09593 13.3582 9.43439L13.3498 9.44918 13.3493 9.45018 13.3487 9.45121C12.7174 10.5722 12.0859 11.6934 11.4509 12.8122 11.3254 13.0338 11.3231 13.2297 11.4625 13.4437 11.7773 13.9271 12.0888 14.4125 12.4004 14.8979L12.4017 14.8999 12.4021 14.9005 12.4026 14.9013C12.5541 15.1372 12.7055 15.3731 12.8573 15.6088 13.1024 15.9895 13.5017 15.9811 13.7238 15.5895 13.8382 15.388 13.9512 15.1856 14.0642 14.9833 14.1869 14.7636 14.3098 14.5437 14.4342 14.325 14.8082 13.6682 15.183 13.0119 15.5577 12.3557L15.5597 12.3522C15.8944 11.7661 16.2291 11.1799 16.5633 10.5935L16.8419 10.1046C17.3701 9.17806 17.8982 8.25149 18.4209 7.3217 18.5397 7.11044 18.7006 7.0215 18.9326 7.02774 19.2069 7.03485 19.4813 7.03209 19.7554 7.02919 19.9158 7.02744 19.9916 6.94851 19.9971 6.78601 19.9994 6.71935 19.9995 6.65269 19.9996 6.58593Z" />
|
|
25
|
+
<path d="M7.06883 13.7154 7.07046 13.7226C7.09146 13.813 7.1268 13.8155 7.19207 13.816 7.30602 13.817 7.32475 13.7326 7.3239 13.6385 7.32296 13.5347 7.32324 13.4583 7.32357 13.3693L7.3239 13.2642C7.32404 13.1834 7.29112 13.021 7.17902 13.007 7.06067 12.9922 6.98731 13.0084 6.94048 13.14 6.93364 13.1593 6.9253 13.1781 6.91695 13.1969 6.9073 13.2187 6.89763 13.2404 6.89025 13.2631 6.87478 13.311 6.83079 13.3054 6.81845 13.2543 6.80454 13.1964 6.78751 13.147 6.75856 13.0943 6.71571 13.0164 6.6449 12.9983 6.56345 13.0027 6.48654 13.0068 6.44596 13.0475 6.41417 13.1191 6.37529 13.207 6.37813 13.341 6.37997 13.4279L6.38062 13.4629C6.38227 13.5596 6.38347 13.6297 6.41346 13.7295 6.43049 13.786 6.46341 13.8173 6.52613 13.8175 6.60304 13.8175 6.64717 13.7866 6.6564 13.7265L6.65731 13.7203 6.65888 13.7085C6.66107 13.6917 6.66308 13.6763 6.66846 13.6615 6.67399 13.6462 6.69542 13.6461 6.70223 13.6608 6.70688 13.6708 6.71076 13.6817 6.71469 13.6927 6.72035 13.7086 6.72609 13.7247 6.7343 13.7385 6.77602 13.8086 6.86556 13.8409 6.93566 13.7903 6.9689 13.7663 6.98597 13.7259 7.00005 13.6927 7.0124 13.6635 7.02245 13.6397 7.0391 13.6373 7.05201 13.6392 7.06378 13.6926 7.06883 13.7154ZM4.44785 13.6344C4.41223 13.5813 4.37293 13.5301 4.31673 13.4983 4.31006 13.5417 4.31141 13.589 4.31271 13.6349 4.31307 13.6476 4.31343 13.6602 4.31361 13.6725 4.31517 13.7655 4.27544 13.8185 4.17824 13.8175 4.08402 13.8166 4.05606 13.7623 4.05748 13.6751 4.06032 13.505 4.05919 13.3349 4.05777 13.1648 4.0572 13.1011 4.05919 13.0373 4.13198 13.017 4.19882 12.9984 4.26906 12.9951 4.32099 13.0566 4.36196 13.105 4.40033 13.1555 4.43867 13.2059L4.46871 13.2453 4.47467 13.2534C4.48776 13.2714 4.49939 13.2873 4.52448 13.2791 4.55044 13.2705 4.55016 13.244 4.54989 13.2183 4.54979 13.2092 4.5497 13.2003 4.55073 13.1923 4.55221 13.1805 4.55346 13.1687 4.55472 13.1569 4.55731 13.1325 4.5599 13.1081 4.56449 13.0841 4.5784 13.0116 4.63388 13.0023 4.69334 13.004 4.75464 13.0057 4.81296 13.026 4.81438 13.096 4.81849 13.3023 4.81708 13.5087 4.81296 13.715 4.81069 13.8339 4.63729 13.8289 4.56932 13.7799 4.52214 13.7457 4.4892 13.6963 4.45655 13.6474L4.44785 13.6344ZM7.71809 13.5445C7.71966 13.506 7.82457 13.5048 7.91076 13.5038 7.94126 13.5034 7.96944 13.5031 7.98983 13.5011 8.05666 13.4948 8.09398 13.4654 8.0876 13.3964 8.08178 13.3325 8.03836 13.2957 7.97294 13.2934 7.93318 13.292 7.89342 13.2918 7.85365 13.2916 7.82502 13.2914 7.79639 13.2913 7.76776 13.2907L7.76355 13.2906C7.74481 13.2903 7.72251 13.29 7.71908 13.2662 7.71454 13.2346 7.74122 13.2244 7.76506 13.2233 7.81089 13.2213 7.85677 13.2204 7.90264 13.2194 7.94524 13.2186 7.98784 13.2177 8.03041 13.216 8.09853 13.2133 8.15245 13.1834 8.14847 13.108 8.14493 13.0425 8.09625 13.0097 8.03197 13.0093 7.87503 13.0081 7.71809 13.0078 7.56129 13.0096 7.48523 13.0103 7.43996 13.0489 7.43982 13.1293 7.4394 13.3159 7.43996 13.5024 7.44067 13.6891 7.44096 13.7622 7.48239 13.8076 7.55036 13.8096 7.71511 13.8146 7.88028 13.8149 8.04489 13.808 8.10236 13.8056 8.15287 13.7691 8.15486 13.6993 8.1567 13.6341 8.10803 13.6021 8.05723 13.592 8.02192 13.5849 7.96946 13.5868 7.9163 13.5887 7.81885 13.5923 7.71892 13.5959 7.71809 13.5445ZM.854793 13.3944C.85467 13.3755.854547 13.3567.854547 13.3379.85445 13.3172.854601 13.2964.854751 13.2757.855043 13.2356.855334 13.1956.853837 13.1556.850574 13.0658.877961 13.0049.979419 13.0027 1.07832 13.0004 1.1304 13.0547 1.13679 13.1473 1.14216 13.2251 1.14143 13.3034 1.1407 13.3816 1.14045 13.4087 1.14019 13.4358 1.14019 13.4629 1.14033 13.5251 1.15069 13.5768 1.22931 13.5775 1.30636 13.5782 1.35319 13.5446 1.35517 13.4643 1.35801 13.355 1.35801 13.2457 1.35702 13.1364 1.35631 13.0516 1.39732 13.0085 1.47948 13.0038 1.56377 12.9991 1.62478 13.0331 1.62932 13.1231 1.63684 13.2765 1.64337 13.4303 1.62294 13.5837 1.61017 13.6787 1.54958 13.7362 1.47054 13.7725 1.31516 13.8438 1.15665 13.8369 1.00525 13.7624.909604 13.7153.851141 13.6352.854263 13.52.85534 13.4782.855066 13.4362.854793 13.3944ZM2.24995 13.2689C2.26598 13.2714 2.28216 13.2728 2.29848 13.2727 2.32402 13.2725 2.35027 13.2684 2.37184 13.2546 2.4015 13.2358 2.41569 13.202 2.41569 13.1677 2.40817 13.0837 2.34289 13.0535 2.27748 13.0256 2.15814 12.9747 2.03213 12.9848 1.9145 13.0282 1.82127 13.0625 1.74124 13.1297 1.74024 13.2506 1.73953 13.3685 1.81446 13.4202 1.90797 13.4614 1.94926 13.4794 1.99056 13.4926 2.03525 13.4947 2.06278 13.496 2.18581 13.5155 2.1868 13.5565 2.18794 13.6076 2.09173 13.6084 2.06051 13.5997 2.03587 13.5928 2.0063 13.5753 1.97504 13.5566 1.89308 13.5079 1.79945 13.4522 1.7523 13.5645 1.70803 13.67 1.78565 13.7295 1.85916 13.7655 1.99297 13.8313 2.13629 13.8381 2.28103 13.7901 2.39554 13.7521 2.47046 13.6783 2.48182 13.5579 2.4909 13.4614 2.41413 13.3604 2.32076 13.3385 2.29997 13.3336 2.28357 13.3328 2.26723 13.3319 2.25044 13.3311 2.2337 13.3302 2.21235 13.325 2.20439 13.3231 2.1957 13.3211 2.18657 13.3191 2.14732 13.3102 2.10002 13.2996 2.06917 13.2805 2.05697 13.273 2.02759 13.2335 2.05427 13.2222 2.06678 13.2168 2.08429 13.2228 2.09842 13.2277 2.10176 13.2288 2.10491 13.2299 2.10777 13.2307 2.11846 13.2339 2.12911 13.2373 2.13975 13.2406 2.14963 13.2437 2.15977 13.2468 2.16963 13.2498 2.19603 13.2576 2.2227 13.2648 2.24995 13.2689ZM2.98344 13.0083V13.009C3.00924 13.009 3.03491 13.009 3.06071 13.0088 3.11945 13.0083 3.17822 13.0077 3.23687 13.01 3.31435 13.0129 3.36983 13.0506 3.37083 13.1346 3.37182 13.2142 3.31492 13.2551 3.24624 13.2534 3.14478 13.2508 3.13768 13.3064 3.14052 13.3838 3.14378 13.473 3.14605 13.5628 3.13924 13.6515 3.13158 13.7521 3.08036 13.8188 2.97081 13.8178 2.86268 13.8168 2.8238 13.7439 2.81812 13.6508 2.81273 13.5635 2.81401 13.4757 2.81528 13.3881L2.81585 13.3465C2.8167 13.2871 2.79584 13.2556 2.73199 13.2571 2.64217 13.2589 2.57675 13.2147 2.58299 13.1222 2.58881 13.0356 2.66104 13.0077 2.74192 13.0083 2.79557 13.0086 2.84927 13.0085 2.90296 13.0084L2.98344 13.0083ZM5.51903 13.0096V13.0078L5.44283 13.0078C5.39203 13.0077 5.34123 13.0077 5.29043 13.0078 5.20855 13.0081 5.13264 13.022 5.12795 13.1257 5.12355 13.2266 5.18826 13.2601 5.27595 13.2562 5.34463 13.2532 5.36762 13.2814 5.36493 13.3491 5.36244 13.4125 5.36296 13.4761 5.36348 13.5396 5.36382 13.5813 5.36415 13.6229 5.36365 13.6645 5.36237 13.7647 5.41218 13.8145 5.50881 13.8173 5.60871 13.8203 5.65596 13.7647 5.65866 13.6684L5.65945 13.6417C5.66184 13.5616 5.66424 13.4813 5.65951 13.4016 5.65369 13.3056 5.67214 13.2475 5.78722 13.2528 5.85817 13.2561 5.91167 13.2063 5.90997 13.131 5.90826 13.0572 5.85775 13.0134 5.78367 13.0104 5.72214 13.0079 5.66053 13.0085 5.5989 13.0091 5.57228 13.0093 5.54565 13.0096 5.51903 13.0096ZM.737441 13.3731C.737441 13.392.737847 13.4112.73797 13.4301.738244 13.4721.738517 13.5141.737441 13.5561.733468 13.7068.657551 13.7917.506995 13.8156.325788 13.8443.161751 13.7735.118471 13.6429.0934967 13.5676.102153 13.4934.178921 13.4522.25356 13.412.319118 13.4312.364101 13.5071.366055 13.5104.367983 13.5138.369932 13.5173.384251 13.5428.399669 13.5703.434767 13.5571.46728 13.5447.46773 13.5104.468125 13.4803L.468256 13.4722C.469763 13.4012.470439 13.3302.471116 13.2592.471521 13.2165.471927 13.1739.472513 13.1313.47379 13.0397.521894 12.9998.610724 13.0035.69927 13.0071.742549 13.0494.738576 13.1417.736308 13.1952.736849 13.2488.737391 13.3025.737629 13.326.737441 13.3495.737441 13.3731ZM3.63717 13.4023 3.63706 13.4846C3.63694 13.5463 3.63682 13.608 3.63731 13.6698 3.63802 13.763 3.6857 13.8146 3.77765 13.8155 3.86478 13.8162 3.93076 13.7747 3.93374 13.682 3.93956 13.4999 3.93913 13.3173 3.93417 13.135 3.93161 13.04 3.86605 13.0051 3.77779 13.0051 3.68329 13.0051 3.63688 13.0522 3.63703 13.1471L3.63717 13.4023ZM5.99087 13.4002H5.99229C5.99229 13.3731 5.99212 13.346 5.9918 13.3189 5.99108 13.2568 5.99036 13.1948 5.99342 13.1329 5.99768 13.0459 6.04664 13.0027 6.13532 13.0045 6.22429 13.0062 6.28858 13.0441 6.29184 13.1364 6.29808 13.3143 6.29822 13.4929 6.29227 13.6709 6.289 13.7659 6.22685 13.8156 6.13192 13.8154 6.03628 13.8151 5.99555 13.7551 5.99172 13.6674 5.98905 13.6056 5.98969 13.5436 5.99032 13.4816 5.99059 13.4545 5.99087 13.4273 5.99087 13.4002Z" />
|
|
26
|
+
</g>
|
|
27
|
+
<defs>
|
|
28
|
+
<clipPath id="a">
|
|
29
|
+
<path fill={color} d="M0 0H20V20H0z" />
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
</svg>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
IconLogoJitSolid.displayName = "IconLogoJitSolid";
|
|
38
|
+
|
|
39
|
+
export default IconLogoJitSolid;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconLogoWechatSolid = 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-logo-wechat-solid`,
|
|
14
|
+
};
|
|
15
|
+
return (
|
|
16
|
+
<svg
|
|
17
|
+
viewBox="0 0 20 20"
|
|
18
|
+
fill="none"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
20
|
+
{...props}
|
|
21
|
+
ref={forwardedRef}
|
|
22
|
+
>
|
|
23
|
+
<path
|
|
24
|
+
d="M13.9554 6.99849C13.7435 6.97487 13.5298 6.95905 13.3139 6.95905C10.1494 6.95905 7.65013 9.32102 7.65011 12.2315C7.65011 12.7155 7.72554 13.182 7.85569 13.6274C7.65013 13.6435 7.44278 13.6539 7.23374 13.6539C6.53463 13.6539 5.95071 13.534 5.28728 13.3978C5.16158 13.372 5.03302 13.3456 4.90029 13.3193L2.57146 14.4872L3.23774 12.4832C1.57001 11.3179 0.572021 9.81542 0.572021 7.98585C0.572021 4.81622 3.57178 2.32007 7.23376 2.32007C10.5094 2.32007 13.379 4.31431 13.9554 6.99849ZM10.5658 5.9841C10.5658 5.48278 10.2335 5.15279 9.73196 5.15279C9.23265 5.15279 8.73163 5.4828 8.73163 5.9841C8.73163 6.48341 9.23263 6.81795 9.73196 6.81795C10.2335 6.81795 10.5658 6.48336 10.5658 5.9841ZM4.06643 5.98412C4.06643 6.48343 4.57032 6.81797 5.06961 6.81797C5.56888 6.81797 5.90117 6.48341 5.90117 5.98412C5.90117 5.4828 5.5689 5.15281 5.06961 5.15281C4.5703 5.15281 4.06643 5.4828 4.06643 5.98412Z"
|
|
25
|
+
fill={color}
|
|
26
|
+
fillRule="evenodd"
|
|
27
|
+
clipRule="evenodd"
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M13.7354 7.31702C16.7288 7.31702 19.3939 9.48805 19.3939 12.1515C19.3939 13.6539 18.3977 14.9842 17.0605 15.9874L17.5615 17.6523L15.7343 16.6517C15.0679 16.8187 14.3988 16.986 13.7354 16.986C10.5657 16.986 8.06934 14.8195 8.06934 12.1515C8.06934 9.48807 10.5657 7.31702 13.7354 7.31702ZM11.232 10.6513C11.232 10.9879 11.5666 11.3179 11.8983 11.3179C12.4022 11.3179 12.7322 10.9879 12.7322 10.6513C12.7322 10.3194 12.4022 9.98504 11.8983 9.98504C11.5666 9.98504 11.232 10.3194 11.232 10.6513ZM14.9009 10.6513C14.9009 10.9879 15.2332 11.3179 15.5626 11.3179C16.0619 11.3179 16.3965 10.9879 16.3965 10.6513C16.3965 10.3194 16.0619 9.98504 15.5626 9.98504C15.2332 9.98504 14.9009 10.3194 14.9009 10.6513Z"
|
|
31
|
+
fill={color}
|
|
32
|
+
fillRule="evenodd"
|
|
33
|
+
clipRule="evenodd"
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
IconLogoWechatSolid.displayName = "IconLogoWechatSolid";
|
|
41
|
+
|
|
42
|
+
export default IconLogoWechatSolid;
|
package/src/customeow/index.json
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
{ "componentName": "IconClickOutline" },
|
|
44
44
|
{ "componentName": "IconFunctionOutline" },
|
|
45
45
|
{ "componentName": "IconFunctionJavascriptOutline" },
|
|
46
|
+
{ "componentName": "IconIfElseOutline" },
|
|
46
47
|
{ "componentName": "IconPaperClipOutline" },
|
|
47
48
|
{ "componentName": "IconFileAudioOutline" },
|
|
48
49
|
{ "componentName": "IconFileVideoOutline" },
|
|
@@ -116,6 +117,7 @@
|
|
|
116
117
|
{ "componentName": "IconQuestionOutline" },
|
|
117
118
|
{ "componentName": "IconFaceOutline" },
|
|
118
119
|
{ "componentName": "IconRocketLaunchOutline" },
|
|
120
|
+
{ "componentName": "IconDataHideOutline" },
|
|
119
121
|
{ "componentName": "IconArrowLeftOutline" },
|
|
120
122
|
{ "componentName": "IconArrowRightOutline" },
|
|
121
123
|
{ "componentName": "IconArrowDownOutline" },
|
|
@@ -394,6 +396,9 @@
|
|
|
394
396
|
{ "componentName": "IconApiSolid" },
|
|
395
397
|
{ "componentName": "IconLogoGoogleSolid" },
|
|
396
398
|
{ "componentName": "IconLogoAppleSolid" },
|
|
399
|
+
{ "componentName": "IconLogoWechatSolid" },
|
|
400
|
+
{ "componentName": "IconLogoErpSolid" },
|
|
401
|
+
{ "componentName": "IconLogoJitSolid" },
|
|
397
402
|
{ "componentName": "IconShapeBicolorSolid" },
|
|
398
403
|
{ "componentName": "IconLineThicknessSolid" },
|
|
399
404
|
{ "componentName": "IconThemeColorSolid" },
|
|
@@ -456,8 +461,7 @@
|
|
|
456
461
|
{ "componentName": "IconCursorArrowRaysSolid" },
|
|
457
462
|
{ "componentName": "IconFilterSolid" },
|
|
458
463
|
{ "componentName": "IconStatusSolid" },
|
|
459
|
-
{ "componentName": "
|
|
460
|
-
{ "componentName": "IconErpSolid" },
|
|
464
|
+
{ "componentName": "IconHouseSolid" },
|
|
461
465
|
{ "componentName": "IconSystemTooOld" },
|
|
462
466
|
{ "componentName": "IconLoadFailure" },
|
|
463
467
|
{ "componentName": "IconNetworkConnectionTimeout" },
|
package/src/customeow/index.tsx
CHANGED
|
@@ -41,6 +41,7 @@ export { default as IconHandOutline } from "./default/icon-hand-outline";
|
|
|
41
41
|
export { default as IconClickOutline } from "./default/icon-click-outline";
|
|
42
42
|
export { default as IconFunctionOutline } from "./default/icon-function-outline";
|
|
43
43
|
export { default as IconFunctionJavascriptOutline } from "./default/icon-function-javascript-outline";
|
|
44
|
+
export { default as IconIfElseOutline } from "./default/icon-if-else-outline";
|
|
44
45
|
export { default as IconPaperClipOutline } from "./default/icon-paper-clip-outline";
|
|
45
46
|
export { default as IconFileAudioOutline } from "./default/icon-file-audio-outline";
|
|
46
47
|
export { default as IconFileVideoOutline } from "./default/icon-file-video-outline";
|
|
@@ -114,6 +115,7 @@ export { default as IconAngleOutline } from "./default/icon-angle-outline";
|
|
|
114
115
|
export { default as IconQuestionOutline } from "./default/icon-question-outline";
|
|
115
116
|
export { default as IconFaceOutline } from "./default/icon-face-outline";
|
|
116
117
|
export { default as IconRocketLaunchOutline } from "./default/icon-rocket-launch-outline";
|
|
118
|
+
export { default as IconDataHideOutline } from "./default/icon-data-hide-outline";
|
|
117
119
|
export { default as IconArrowLeftOutline } from "./default/icon-arrow-left-outline";
|
|
118
120
|
export { default as IconArrowRightOutline } from "./default/icon-arrow-right-outline";
|
|
119
121
|
export { default as IconArrowDownOutline } from "./default/icon-arrow-down-outline";
|
|
@@ -392,6 +394,9 @@ export { default as IconNoSymbolSolid } from "./default/icon-no-symbol-solid";
|
|
|
392
394
|
export { default as IconApiSolid } from "./default/icon-api-solid";
|
|
393
395
|
export { default as IconLogoGoogleSolid } from "./default/icon-logo-google-solid";
|
|
394
396
|
export { default as IconLogoAppleSolid } from "./default/icon-logo-apple-solid";
|
|
397
|
+
export { default as IconLogoWechatSolid } from "./default/icon-logo-wechat-solid";
|
|
398
|
+
export { default as IconLogoErpSolid } from "./default/icon-logo-erp-solid";
|
|
399
|
+
export { default as IconLogoJitSolid } from "./default/icon-logo-jit-solid";
|
|
395
400
|
export { default as IconShapeBicolorSolid } from "./default/icon-shape-bicolor-solid";
|
|
396
401
|
export { default as IconLineThicknessSolid } from "./default/icon-line-thickness-solid";
|
|
397
402
|
export { default as IconThemeColorSolid } from "./default/icon-theme-color-solid";
|
|
@@ -454,8 +459,7 @@ export { default as IconRectangleStackSolid } from "./default/icon-rectangle-sta
|
|
|
454
459
|
export { default as IconCursorArrowRaysSolid } from "./default/icon-cursor-arrow-rays-solid";
|
|
455
460
|
export { default as IconFilterSolid } from "./default/icon-filter-solid";
|
|
456
461
|
export { default as IconStatusSolid } from "./default/icon-status-solid";
|
|
457
|
-
export { default as
|
|
458
|
-
export { default as IconErpSolid } from "./default/icon-erp-solid";
|
|
462
|
+
export { default as IconHouseSolid } from "./default/icon-house-solid";
|
|
459
463
|
export { default as IconSystemTooOld } from "./default/icon-system-too-old";
|
|
460
464
|
export { default as IconLoadFailure } from "./default/icon-load-failure";
|
|
461
465
|
export { default as IconNetworkConnectionTimeout } from "./default/icon-network-connection-timeout";
|
|
@@ -41,6 +41,7 @@ export { default as IconHandOutline } from "./default/icon-hand-outline";
|
|
|
41
41
|
export { default as IconClickOutline } from "./default/icon-click-outline";
|
|
42
42
|
export { default as IconFunctionOutline } from "./default/icon-function-outline";
|
|
43
43
|
export { default as IconFunctionJavascriptOutline } from "./default/icon-function-javascript-outline";
|
|
44
|
+
export { default as IconIfElseOutline } from "./default/icon-if-else-outline";
|
|
44
45
|
export { default as IconPaperClipOutline } from "./default/icon-paper-clip-outline";
|
|
45
46
|
export { default as IconFileAudioOutline } from "./default/icon-file-audio-outline";
|
|
46
47
|
export { default as IconFileVideoOutline } from "./default/icon-file-video-outline";
|
|
@@ -114,6 +115,7 @@ export { default as IconAngleOutline } from "./default/icon-angle-outline";
|
|
|
114
115
|
export { default as IconQuestionOutline } from "./default/icon-question-outline";
|
|
115
116
|
export { default as IconFaceOutline } from "./default/icon-face-outline";
|
|
116
117
|
export { default as IconRocketLaunchOutline } from "./default/icon-rocket-launch-outline";
|
|
118
|
+
export { default as IconDataHideOutline } from "./default/icon-data-hide-outline";
|
|
117
119
|
export { default as IconArrowLeftOutline } from "./default/icon-arrow-left-outline";
|
|
118
120
|
export { default as IconArrowRightOutline } from "./default/icon-arrow-right-outline";
|
|
119
121
|
export { default as IconArrowDownOutline } from "./default/icon-arrow-down-outline";
|
|
@@ -392,6 +394,9 @@ export { default as IconNoSymbolSolid } from "./default/icon-no-symbol-solid";
|
|
|
392
394
|
export { default as IconApiSolid } from "./default/icon-api-solid";
|
|
393
395
|
export { default as IconLogoGoogleSolid } from "./default/icon-logo-google-solid";
|
|
394
396
|
export { default as IconLogoAppleSolid } from "./default/icon-logo-apple-solid";
|
|
397
|
+
export { default as IconLogoWechatSolid } from "./default/icon-logo-wechat-solid";
|
|
398
|
+
export { default as IconLogoErpSolid } from "./default/icon-logo-erp-solid";
|
|
399
|
+
export { default as IconLogoJitSolid } from "./default/icon-logo-jit-solid";
|
|
395
400
|
export { default as IconShapeBicolorSolid } from "./default/icon-shape-bicolor-solid";
|
|
396
401
|
export { default as IconLineThicknessSolid } from "./default/icon-line-thickness-solid";
|
|
397
402
|
export { default as IconThemeColorSolid } from "./default/icon-theme-color-solid";
|
|
@@ -454,8 +459,7 @@ export { default as IconRectangleStackSolid } from "./default/icon-rectangle-sta
|
|
|
454
459
|
export { default as IconCursorArrowRaysSolid } from "./default/icon-cursor-arrow-rays-solid";
|
|
455
460
|
export { default as IconFilterSolid } from "./default/icon-filter-solid";
|
|
456
461
|
export { default as IconStatusSolid } from "./default/icon-status-solid";
|
|
457
|
-
export { default as
|
|
458
|
-
export { default as IconErpSolid } from "./default/icon-erp-solid";
|
|
462
|
+
export { default as IconHouseSolid } from "./default/icon-house-solid";
|
|
459
463
|
export { default as IconSystemTooOld } from "./default/icon-system-too-old";
|
|
460
464
|
export { default as IconLoadFailure } from "./default/icon-load-failure";
|
|
461
465
|
export { default as IconNetworkConnectionTimeout } from "./default/icon-network-connection-timeout";
|