@sunzi/icon 1.0.15 → 1.0.17

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.
@@ -51,6 +51,7 @@ export { default as IconArrowChevronDoubleLeftOutline } from "./default/icon-arr
51
51
  export { default as IconArrowChevronDoubleRightOutline } from "./default/icon-arrow-chevron-double-right-outline";
52
52
  export { default as IconArrowLongRightOutline } from "./default/icon-arrow-long-right-outline";
53
53
  export { default as IconSearchOutline } from "./default/icon-search-outline";
54
+ export { default as IconMagnifyingGlassPlusOutline } from "./default/icon-magnifying-glass-plus-outline";
54
55
  export { default as IconArrowDownloadOutline } from "./default/icon-arrow-download-outline";
55
56
  export { default as IconArrowUploadOutline } from "./default/icon-arrow-upload-outline";
56
57
  export { default as IconArrowUpRightOutline } from "./default/icon-arrow-up-right-outline";
@@ -117,6 +118,7 @@ export { default as IconQuestionMarkCircleSolid } from "./default/icon-question-
117
118
  export { default as IconSwatchSolid } from "./default/icon-swatch-solid";
118
119
  export { default as IconShoppingCartSolid } from "./default/icon-shopping-cart-solid";
119
120
  export { default as IconCloseCircleSolid } from "./default/icon-close-circle-solid";
121
+ export { default as IconCloseFunctionCircleSolid } from "./default/icon-close-function-circle-solid";
120
122
  export { default as IconPlusAddCircleSolid } from "./default/icon-plus-add-circle-solid";
121
123
  export { default as IconMinusCircleSolid } from "./default/icon-minus-circle-solid";
122
124
  export { default as IconScissorsSolid } from "./default/icon-scissors-solid";
@@ -21,7 +21,7 @@ export const IconArrowChevronDownOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M4.55811 8.03804L5.44199 7.15416L10 11.7122L14.5581 7.15415L15.442 8.03804L10 13.48L4.55811 8.03804Z"
24
+ d="M3.55811 7.53804L4.44199 6.65416L10 12.2122L15.5581 6.65415L16.442 7.53804L10 13.98L3.55811 7.53804Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
@@ -21,7 +21,7 @@ export const IconArrowChevronLeftOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M11.962 4.55811L12.8458 5.44199L8.28779 10L12.8458 14.5581L11.962 15.442L6.52002 10L11.962 4.55811Z"
24
+ d="M12.462 3.55811L13.3458 4.44199L7.78779 10L13.3458 15.5581L12.462 16.442L6.02002 10L12.462 3.55811Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
@@ -23,7 +23,7 @@ export const IconArrowChevronRigthOutline = forwardRef<
23
23
  ref={forwardedRef}
24
24
  >
25
25
  <path
26
- d="M8.03804 15.4419L7.15416 14.558L11.7122 9.99995L7.15415 5.4419L8.03804 4.55801L13.48 9.99995L8.03804 15.4419Z"
26
+ d="M7.53804 16.4419L6.65416 15.558L12.2122 9.99995L6.65415 4.4419L7.53804 3.55801L13.98 9.99995L7.53804 16.4419Z"
27
27
  fill={color}
28
28
  fillRule="evenodd"
29
29
  clipRule="evenodd"
@@ -21,7 +21,7 @@ export const IconArrowChevronUpOutline = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M15.4419 11.962L14.558 12.8458L9.99995 8.28779L5.44189 12.8458L4.55801 11.962L9.99995 6.52002L15.4419 11.962Z"
24
+ d="M16.4419 12.462L15.558 13.3458L9.99995 7.78779L4.44189 13.3458L3.55801 12.462L9.99995 6.02002L16.4419 12.462Z"
25
25
  fill={color}
26
26
  fillRule="evenodd"
27
27
  clipRule="evenodd"
@@ -0,0 +1,35 @@
1
+ import { forwardRef } from "react";
2
+ import type { IconProps } from "@/types";
3
+
4
+ export const IconCloseFunctionCircleSolid = 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-shein-icon customeow-shein-icon-icon-close-function-circle-solid`,
16
+ };
17
+ return (
18
+ <svg
19
+ viewBox="0 0 20 20"
20
+ fill="none"
21
+ xmlns="http://www.w3.org/2000/svg"
22
+ {...props}
23
+ ref={forwardedRef}
24
+ >
25
+ <path
26
+ d="M9.11616 10L4.55811 14.5581L5.44199 15.442L10 10.8839L14.5581 15.442L15.442 14.5581L10.8839 10L15.442 5.44199L14.5581 4.55811L10 9.11616L5.44199 4.55811L4.55811 5.44199L9.11616 10Z"
27
+ fill={color}
28
+ />
29
+ </svg>
30
+ );
31
+ });
32
+
33
+ IconCloseFunctionCircleSolid.displayName = "IconCloseFunctionCircleSolid";
34
+
35
+ export default IconCloseFunctionCircleSolid;
@@ -21,11 +21,13 @@ export const IconPencilSquareSolid = forwardRef<SVGSVGElement, IconProps>(
21
21
  ref={forwardedRef}
22
22
  >
23
23
  <path
24
- d="M5.43306 13.9168L6.69485 10.7623C6.89603 10.2593 7.19728 9.80249 7.58033 9.41945L14.4995 2.50071C15.3279 1.67229 16.6711 1.67229 17.4995 2.50072C18.3279 3.32914 18.3279 4.67229 17.4995 5.50072L10.5803 12.4194C10.1973 12.8025 9.74042 13.1037 9.23746 13.3049L6.08299 14.5667C5.67484 14.73 5.2698 14.3249 5.43306 13.9168Z"
24
+ d="M6.86307 13.1369L9.37103 13.1038L18 4.47487L15.5251 2L6.89616 10.629L6.86307 13.1369ZM15.5251 3.76777L16.2322 4.47487L15.5251 5.18206L14.8179 4.47495L15.5251 3.76777ZM13.9341 5.35883L14.6412 6.06594L8.84645 11.8607L8.12989 11.8701L8.13934 11.1536L13.9341 5.35883Z"
25
25
  fill={color}
26
+ fillRule="evenodd"
27
+ clipRule="evenodd"
26
28
  />
27
29
  <path
28
- d="M3.5 5.75C3.5 5.05964 4.05964 4.5 4.75 4.5H10C10.4142 4.5 10.75 4.16421 10.75 3.75C10.75 3.33579 10.4142 3 10 3H4.75C3.23122 3 2 4.23122 2 5.75V15.25C2 16.7688 3.23122 18 4.75 18H14.25C15.7688 18 17 16.7688 17 15.25V10C17 9.58579 16.6642 9.25 16.25 9.25C15.8358 9.25 15.5 9.58579 15.5 10V15.25C15.5 15.9404 14.9404 16.5 14.25 16.5H4.75C4.05964 16.5 3.5 15.9404 3.5 15.25V5.75Z"
30
+ d="M2.25 2.25H10.2544V3.5L3.5 3.5L3.5 16.25H16.25V10.25H17.5L17.5 17.5H2.25V2.25Z"
29
31
  fill={color}
30
32
  />
31
33
  </svg>
@@ -45,6 +45,8 @@
45
45
  { "componentName": "IconTrianglesPlaySolid" },
46
46
  { "componentName": "IconCheckboxSolid" },
47
47
  { "componentName": "IconArrowLeftCircleSolid" },
48
- { "componentName": "IconImagePhotoSolid" }
48
+ { "componentName": "IconCloseFunctionCircleSolid" },
49
+ { "componentName": "IconImagePhotoSolid" },
50
+ { "componentName": "IconPencilSquareSolid" }
49
51
  ]
50
52
  }
@@ -43,4 +43,6 @@ export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
43
43
  export { default as IconTrianglesPlaySolid } from "./default/icon-triangles-play-solid";
44
44
  export { default as IconCheckboxSolid } from "./default/icon-checkbox-solid";
45
45
  export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
46
+ export { default as IconCloseFunctionCircleSolid } from "./default/icon-close-function-circle-solid";
46
47
  export { default as IconImagePhotoSolid } from "./default/icon-image-photo-solid";
48
+ export { default as IconPencilSquareSolid } from "./default/icon-pencil-square-solid";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconCloseFunctionCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconCloseFunctionCircleSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconMagnifyingGlassPlusOutline: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconMagnifyingGlassPlusOutline;
@@ -51,6 +51,7 @@ export { default as IconArrowChevronDoubleLeftOutline } from "./default/icon-arr
51
51
  export { default as IconArrowChevronDoubleRightOutline } from "./default/icon-arrow-chevron-double-right-outline";
52
52
  export { default as IconArrowLongRightOutline } from "./default/icon-arrow-long-right-outline";
53
53
  export { default as IconSearchOutline } from "./default/icon-search-outline";
54
+ export { default as IconMagnifyingGlassPlusOutline } from "./default/icon-magnifying-glass-plus-outline";
54
55
  export { default as IconArrowDownloadOutline } from "./default/icon-arrow-download-outline";
55
56
  export { default as IconArrowUploadOutline } from "./default/icon-arrow-upload-outline";
56
57
  export { default as IconArrowUpRightOutline } from "./default/icon-arrow-up-right-outline";
@@ -117,6 +118,7 @@ export { default as IconQuestionMarkCircleSolid } from "./default/icon-question-
117
118
  export { default as IconSwatchSolid } from "./default/icon-swatch-solid";
118
119
  export { default as IconShoppingCartSolid } from "./default/icon-shopping-cart-solid";
119
120
  export { default as IconCloseCircleSolid } from "./default/icon-close-circle-solid";
121
+ export { default as IconCloseFunctionCircleSolid } from "./default/icon-close-function-circle-solid";
120
122
  export { default as IconPlusAddCircleSolid } from "./default/icon-plus-add-circle-solid";
121
123
  export { default as IconMinusCircleSolid } from "./default/icon-minus-circle-solid";
122
124
  export { default as IconScissorsSolid } from "./default/icon-scissors-solid";
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconCloseFunctionCircleSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconCloseFunctionCircleSolid;
@@ -0,0 +1,3 @@
1
+ import type { IconProps } from '../../types';
2
+ export declare const IconPencilSquareSolid: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default IconPencilSquareSolid;
@@ -43,4 +43,6 @@ export { default as IconQrCodeSolid } from "./default/icon-qr-code-solid";
43
43
  export { default as IconTrianglesPlaySolid } from "./default/icon-triangles-play-solid";
44
44
  export { default as IconCheckboxSolid } from "./default/icon-checkbox-solid";
45
45
  export { default as IconArrowLeftCircleSolid } from "./default/icon-arrow-left-circle-solid";
46
+ export { default as IconCloseFunctionCircleSolid } from "./default/icon-close-function-circle-solid";
46
47
  export { default as IconImagePhotoSolid } from "./default/icon-image-photo-solid";
48
+ export { default as IconPencilSquareSolid } from "./default/icon-pencil-square-solid";