@sunzi/icon 1.2.11 → 1.2.12
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 +1 -1
- package/es/customeow/default/icon-arrow-long-slash-right-outline.js +1 -0
- package/es/customeow/default/icon-backspace-solid.js +1 -0
- package/es/customeow/default/icon-crop-square-4-to-3-outline.js +1 -1
- package/es/customeow/default/icon-currency-cny-solid.js +1 -0
- package/es/customeow/default/icon-currency-eur-solid.js +1 -0
- package/es/customeow/default/icon-currency-gbp-solid.js +1 -0
- package/es/customeow/default/icon-currency-inr-solid.js +1 -0
- package/es/customeow/default/icon-currency-jpy-solid.js +1 -0
- package/es/customeow/default/icon-currency-krw-solid.js +1 -0
- package/es/customeow/default/icon-currency-rub-solid.js +1 -0
- package/es/customeow/default/icon-currency-vnd-solid.js +1 -0
- package/es/customeow/default/icon-document-eye-solid.js +1 -0
- package/es/customeow/default/icon-document-text-solid.js +1 -1
- package/es/customeow/default/icon-list-solid.js +1 -1
- package/es/customeow/default/icon-tool-text-square-outline.js +1 -1
- package/es/customeow/default/icon-truck-solid.js +1 -0
- package/es/customeow/index.js +1 -1
- package/manifest.json +12 -1
- package/package.json +1 -1
- package/src/customeow/default/icon-app-squares-solid.tsx +1 -1
- package/src/customeow/default/icon-arrow-long-slash-right-outline.tsx +35 -0
- package/src/customeow/default/icon-backspace-solid.tsx +36 -0
- package/src/customeow/default/icon-crop-square-4-to-3-outline.tsx +1 -1
- package/src/customeow/default/icon-currency-cny-solid.tsx +36 -0
- package/src/customeow/default/icon-currency-eur-solid.tsx +36 -0
- package/src/customeow/default/icon-currency-gbp-solid.tsx +36 -0
- package/src/customeow/default/icon-currency-inr-solid.tsx +36 -0
- package/src/customeow/default/icon-currency-jpy-solid.tsx +36 -0
- package/src/customeow/default/icon-currency-krw-solid.tsx +40 -0
- package/src/customeow/default/icon-currency-rub-solid.tsx +40 -0
- package/src/customeow/default/icon-currency-vnd-solid.tsx +40 -0
- package/src/customeow/default/icon-document-eye-solid.tsx +46 -0
- package/src/customeow/default/icon-document-text-solid.tsx +5 -1
- package/src/customeow/default/icon-list-solid.tsx +1 -1
- package/src/customeow/default/icon-tool-text-square-outline.tsx +2 -2
- package/src/customeow/default/icon-truck-solid.tsx +42 -0
- package/src/customeow/index.json +12 -1
- package/src/customeow/index.tsx +12 -1
- package/types/customeow/default/icon-arrow-long-slash-right-outline.d.ts +3 -0
- package/types/customeow/default/icon-backspace-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-cny-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-eur-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-gbp-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-inr-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-jpy-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-krw-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-rub-solid.d.ts +3 -0
- package/types/customeow/default/icon-currency-vnd-solid.d.ts +3 -0
- package/types/customeow/default/icon-document-eye-solid.d.ts +3 -0
- package/types/customeow/default/icon-truck-solid.d.ts +3 -0
- package/types/customeow/index.d.ts +12 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import type { IconProps } from "../../types";
|
|
3
|
+
|
|
4
|
+
export const IconTruckSolid = 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-truck-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.96252 3.125C2.09958 3.125 1.40002 3.82455 1.40002 4.6875V10.625H11.4V4.6875C11.4 3.82456 10.7005 3.125 9.83752 3.125H2.96252ZM11.4 11.875H1.40002V14.0625C1.40002 14.9254 2.09958 15.625 2.96252 15.625H3.27502C3.27502 14.2443 4.39431 13.125 5.77502 13.125 7.15574 13.125 8.27502 14.2443 8.27502 15.625H10.775C11.1202 15.625 11.4 15.3452 11.4 15V11.875Z"
|
|
25
|
+
fill={color}
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
d="M7.02502 15.625C7.02502 14.9346 6.46538 14.375 5.77502 14.375 5.08467 14.375 4.52502 14.9346 4.52502 15.625 4.52502 16.3154 5.08467 16.875 5.77502 16.875 6.46538 16.875 7.02502 16.3154 7.02502 15.625ZM13.275 5C12.9298 5 12.65 5.27982 12.65 5.625V15C12.65 15.0723 12.6623 15.1418 12.6849 15.2064 12.8841 14.025 13.9119 13.125 15.15 13.125 16.5202 13.125 17.6329 14.2272 17.6498 15.5933 18.361 15.4474 18.9187 14.8138 18.87 14.0245 18.6759 10.8742 17.548 7.97585 15.7604 5.60408 15.465 5.21219 15.0055 5 14.5351 5H13.275Z"
|
|
29
|
+
fill={color}
|
|
30
|
+
/>
|
|
31
|
+
<path
|
|
32
|
+
d="M16.4 15.625C16.4 14.9346 15.8404 14.375 15.15 14.375C14.4597 14.375 13.9 14.9346 13.9 15.625C13.9 16.3154 14.4597 16.875 15.15 16.875C15.8404 16.875 16.4 16.3154 16.4 15.625Z"
|
|
33
|
+
fill={color}
|
|
34
|
+
/>
|
|
35
|
+
</svg>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
|
|
40
|
+
IconTruckSolid.displayName = "IconTruckSolid";
|
|
41
|
+
|
|
42
|
+
export default IconTruckSolid;
|
package/src/customeow/index.json
CHANGED
|
@@ -202,6 +202,7 @@
|
|
|
202
202
|
{ "componentName": "IconArrowChevronDoubleRightOutline" },
|
|
203
203
|
{ "componentName": "IconArrowChevronDoubleDownOutline" },
|
|
204
204
|
{ "componentName": "IconArrowLongRightOutline" },
|
|
205
|
+
{ "componentName": "IconArrowLongSlashRightOutline" },
|
|
205
206
|
{ "componentName": "IconSearchOutline" },
|
|
206
207
|
{ "componentName": "IconMagnifyingGlassPlusOutline" },
|
|
207
208
|
{ "componentName": "IconMagnifyingGlassMinusOutline" },
|
|
@@ -388,7 +389,8 @@
|
|
|
388
389
|
{ "componentName": "IconAddGroupSolid" },
|
|
389
390
|
{ "componentName": "IconCloseUngroupSolid" },
|
|
390
391
|
{ "componentName": "IconSelectGroupSolid" },
|
|
391
|
-
{ "componentName": "
|
|
392
|
+
{ "componentName": "IconTruckSolid" },
|
|
393
|
+
{ "componentName": "IconBackspaceSolid" },
|
|
392
394
|
{ "componentName": "IconImagePhotoPlusSolid" },
|
|
393
395
|
{ "componentName": "IconImagePhotoErrorSolid" },
|
|
394
396
|
{ "componentName": "IconImagePhotoExchangeSolid" },
|
|
@@ -418,6 +420,7 @@
|
|
|
418
420
|
{ "componentName": "IconDocumentCsvSolid" },
|
|
419
421
|
{ "componentName": "IconDocumentArrowLeftDownSolid" },
|
|
420
422
|
{ "componentName": "IconDocumentAddSolid" },
|
|
423
|
+
{ "componentName": "IconDocumentEyeSolid" },
|
|
421
424
|
{ "componentName": "IconDocumentHandleSolid" },
|
|
422
425
|
{ "componentName": "IconDocumentCompleteSolid" },
|
|
423
426
|
{ "componentName": "IconDocumentConvertFileSolid" },
|
|
@@ -591,6 +594,14 @@
|
|
|
591
594
|
{ "componentName": "IconOpenSolid" },
|
|
592
595
|
{ "componentName": "IconArchiveSolid" },
|
|
593
596
|
{ "componentName": "IconCurrencyDollarSolid" },
|
|
597
|
+
{ "componentName": "IconCurrencyEurSolid" },
|
|
598
|
+
{ "componentName": "IconCurrencyGbpSolid" },
|
|
599
|
+
{ "componentName": "IconCurrencyCnySolid" },
|
|
600
|
+
{ "componentName": "IconCurrencyJpySolid" },
|
|
601
|
+
{ "componentName": "IconCurrencyInrSolid" },
|
|
602
|
+
{ "componentName": "IconCurrencyRubSolid" },
|
|
603
|
+
{ "componentName": "IconCurrencyKrwSolid" },
|
|
604
|
+
{ "componentName": "IconCurrencyVndSolid" },
|
|
594
605
|
{ "componentName": "IconHourglassSolid" },
|
|
595
606
|
{ "componentName": "IconDeveloperSolid" },
|
|
596
607
|
{ "componentName": "IconImageToImageSolid" },
|
package/src/customeow/index.tsx
CHANGED
|
@@ -200,6 +200,7 @@ export { default as IconArrowChevronDoubleLeftOutline } from "./default/icon-arr
|
|
|
200
200
|
export { default as IconArrowChevronDoubleRightOutline } from "./default/icon-arrow-chevron-double-right-outline";
|
|
201
201
|
export { default as IconArrowChevronDoubleDownOutline } from "./default/icon-arrow-chevron-double-down-outline";
|
|
202
202
|
export { default as IconArrowLongRightOutline } from "./default/icon-arrow-long-right-outline";
|
|
203
|
+
export { default as IconArrowLongSlashRightOutline } from "./default/icon-arrow-long-slash-right-outline";
|
|
203
204
|
export { default as IconSearchOutline } from "./default/icon-search-outline";
|
|
204
205
|
export { default as IconMagnifyingGlassPlusOutline } from "./default/icon-magnifying-glass-plus-outline";
|
|
205
206
|
export { default as IconMagnifyingGlassMinusOutline } from "./default/icon-magnifying-glass-minus-outline";
|
|
@@ -386,7 +387,8 @@ export { default as IconCopyLinkSolid } from "./default/icon-copy-link-solid";
|
|
|
386
387
|
export { default as IconAddGroupSolid } from "./default/icon-add-group-solid";
|
|
387
388
|
export { default as IconCloseUngroupSolid } from "./default/icon-close-ungroup-solid";
|
|
388
389
|
export { default as IconSelectGroupSolid } from "./default/icon-select-group-solid";
|
|
389
|
-
export { default as
|
|
390
|
+
export { default as IconTruckSolid } from "./default/icon-truck-solid";
|
|
391
|
+
export { default as IconBackspaceSolid } from "./default/icon-backspace-solid";
|
|
390
392
|
export { default as IconImagePhotoPlusSolid } from "./default/icon-image-photo-plus-solid";
|
|
391
393
|
export { default as IconImagePhotoErrorSolid } from "./default/icon-image-photo-error-solid";
|
|
392
394
|
export { default as IconImagePhotoExchangeSolid } from "./default/icon-image-photo-exchange-solid";
|
|
@@ -416,6 +418,7 @@ export { default as IconDocumentMultipleSolid } from "./default/icon-document-mu
|
|
|
416
418
|
export { default as IconDocumentCsvSolid } from "./default/icon-document-csv-solid";
|
|
417
419
|
export { default as IconDocumentArrowLeftDownSolid } from "./default/icon-document-arrow-left-down-solid";
|
|
418
420
|
export { default as IconDocumentAddSolid } from "./default/icon-document-add-solid";
|
|
421
|
+
export { default as IconDocumentEyeSolid } from "./default/icon-document-eye-solid";
|
|
419
422
|
export { default as IconDocumentHandleSolid } from "./default/icon-document-handle-solid";
|
|
420
423
|
export { default as IconDocumentCompleteSolid } from "./default/icon-document-complete-solid";
|
|
421
424
|
export { default as IconDocumentConvertFileSolid } from "./default/icon-document-convert-file-solid";
|
|
@@ -589,6 +592,14 @@ export { default as IconInvalidSolid } from "./default/icon-invalid-solid";
|
|
|
589
592
|
export { default as IconOpenSolid } from "./default/icon-open-solid";
|
|
590
593
|
export { default as IconArchiveSolid } from "./default/icon-archive-solid";
|
|
591
594
|
export { default as IconCurrencyDollarSolid } from "./default/icon-currency-dollar-solid";
|
|
595
|
+
export { default as IconCurrencyEurSolid } from "./default/icon-currency-eur-solid";
|
|
596
|
+
export { default as IconCurrencyGbpSolid } from "./default/icon-currency-gbp-solid";
|
|
597
|
+
export { default as IconCurrencyCnySolid } from "./default/icon-currency-cny-solid";
|
|
598
|
+
export { default as IconCurrencyJpySolid } from "./default/icon-currency-jpy-solid";
|
|
599
|
+
export { default as IconCurrencyInrSolid } from "./default/icon-currency-inr-solid";
|
|
600
|
+
export { default as IconCurrencyRubSolid } from "./default/icon-currency-rub-solid";
|
|
601
|
+
export { default as IconCurrencyKrwSolid } from "./default/icon-currency-krw-solid";
|
|
602
|
+
export { default as IconCurrencyVndSolid } from "./default/icon-currency-vnd-solid";
|
|
592
603
|
export { default as IconHourglassSolid } from "./default/icon-hourglass-solid";
|
|
593
604
|
export { default as IconDeveloperSolid } from "./default/icon-developer-solid";
|
|
594
605
|
export { default as IconImageToImageSolid } from "./default/icon-image-to-image-solid";
|
|
@@ -200,6 +200,7 @@ export { default as IconArrowChevronDoubleLeftOutline } from "./default/icon-arr
|
|
|
200
200
|
export { default as IconArrowChevronDoubleRightOutline } from "./default/icon-arrow-chevron-double-right-outline";
|
|
201
201
|
export { default as IconArrowChevronDoubleDownOutline } from "./default/icon-arrow-chevron-double-down-outline";
|
|
202
202
|
export { default as IconArrowLongRightOutline } from "./default/icon-arrow-long-right-outline";
|
|
203
|
+
export { default as IconArrowLongSlashRightOutline } from "./default/icon-arrow-long-slash-right-outline";
|
|
203
204
|
export { default as IconSearchOutline } from "./default/icon-search-outline";
|
|
204
205
|
export { default as IconMagnifyingGlassPlusOutline } from "./default/icon-magnifying-glass-plus-outline";
|
|
205
206
|
export { default as IconMagnifyingGlassMinusOutline } from "./default/icon-magnifying-glass-minus-outline";
|
|
@@ -386,7 +387,8 @@ export { default as IconCopyLinkSolid } from "./default/icon-copy-link-solid";
|
|
|
386
387
|
export { default as IconAddGroupSolid } from "./default/icon-add-group-solid";
|
|
387
388
|
export { default as IconCloseUngroupSolid } from "./default/icon-close-ungroup-solid";
|
|
388
389
|
export { default as IconSelectGroupSolid } from "./default/icon-select-group-solid";
|
|
389
|
-
export { default as
|
|
390
|
+
export { default as IconTruckSolid } from "./default/icon-truck-solid";
|
|
391
|
+
export { default as IconBackspaceSolid } from "./default/icon-backspace-solid";
|
|
390
392
|
export { default as IconImagePhotoPlusSolid } from "./default/icon-image-photo-plus-solid";
|
|
391
393
|
export { default as IconImagePhotoErrorSolid } from "./default/icon-image-photo-error-solid";
|
|
392
394
|
export { default as IconImagePhotoExchangeSolid } from "./default/icon-image-photo-exchange-solid";
|
|
@@ -416,6 +418,7 @@ export { default as IconDocumentMultipleSolid } from "./default/icon-document-mu
|
|
|
416
418
|
export { default as IconDocumentCsvSolid } from "./default/icon-document-csv-solid";
|
|
417
419
|
export { default as IconDocumentArrowLeftDownSolid } from "./default/icon-document-arrow-left-down-solid";
|
|
418
420
|
export { default as IconDocumentAddSolid } from "./default/icon-document-add-solid";
|
|
421
|
+
export { default as IconDocumentEyeSolid } from "./default/icon-document-eye-solid";
|
|
419
422
|
export { default as IconDocumentHandleSolid } from "./default/icon-document-handle-solid";
|
|
420
423
|
export { default as IconDocumentCompleteSolid } from "./default/icon-document-complete-solid";
|
|
421
424
|
export { default as IconDocumentConvertFileSolid } from "./default/icon-document-convert-file-solid";
|
|
@@ -589,6 +592,14 @@ export { default as IconInvalidSolid } from "./default/icon-invalid-solid";
|
|
|
589
592
|
export { default as IconOpenSolid } from "./default/icon-open-solid";
|
|
590
593
|
export { default as IconArchiveSolid } from "./default/icon-archive-solid";
|
|
591
594
|
export { default as IconCurrencyDollarSolid } from "./default/icon-currency-dollar-solid";
|
|
595
|
+
export { default as IconCurrencyEurSolid } from "./default/icon-currency-eur-solid";
|
|
596
|
+
export { default as IconCurrencyGbpSolid } from "./default/icon-currency-gbp-solid";
|
|
597
|
+
export { default as IconCurrencyCnySolid } from "./default/icon-currency-cny-solid";
|
|
598
|
+
export { default as IconCurrencyJpySolid } from "./default/icon-currency-jpy-solid";
|
|
599
|
+
export { default as IconCurrencyInrSolid } from "./default/icon-currency-inr-solid";
|
|
600
|
+
export { default as IconCurrencyRubSolid } from "./default/icon-currency-rub-solid";
|
|
601
|
+
export { default as IconCurrencyKrwSolid } from "./default/icon-currency-krw-solid";
|
|
602
|
+
export { default as IconCurrencyVndSolid } from "./default/icon-currency-vnd-solid";
|
|
592
603
|
export { default as IconHourglassSolid } from "./default/icon-hourglass-solid";
|
|
593
604
|
export { default as IconDeveloperSolid } from "./default/icon-developer-solid";
|
|
594
605
|
export { default as IconImageToImageSolid } from "./default/icon-image-to-image-solid";
|