@abqm-ds/icons 4.0.8 → 4.0.10
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +407 -358
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +405 -358
- package/package.json +1 -1
- package/src/components/icons/CheckAllIcon.tsx +18 -0
- package/src/components/icons/CurrencyDollarIcon.tsx +17 -0
- package/src/components/icons/index.ts +2 -0
- package/src/icons/check-all.svg +3 -0
- package/src/icons/currency-dollar.svg +3 -0
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const CheckAllIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 16 16"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#001007'}
|
|
13
|
+
fillOpacity={0.5}
|
|
14
|
+
d="M8.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L2.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093L8.95 4.992zm-.92 5.14.92.92a.75.75 0 0 0 1.08-.02l3.991-4.99a.75.75 0 1 0-1.09-1.028L9.476 9.417l-.485-.486z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default CheckAllIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const CurrencyDollarIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
13
|
+
d="M6 16.172c.222 2.5 2.27 4.275 5.387 4.504V22.5h1.564v-1.824c3.405-.268 5.517-2.157 5.517-4.95 0-2.385-1.42-3.765-4.434-4.542l-1.083-.28V5.2c1.683.165 2.819 1.07 3.105 2.424h2.205c-.249-2.4-2.31-4.122-5.31-4.313V1.5h-1.565v1.85c-2.908.345-4.904 2.208-4.904 4.734 0 2.18 1.449 3.724 3.991 4.375l.915.243v6.047c-1.723-.255-2.91-1.2-3.197-2.577zm5.086-5.754c-1.564-.395-2.4-1.238-2.4-2.424 0-1.416 1.056-2.462 2.7-2.742v5.242l-.3-.075zm2.387 2.808c1.93.484 2.778 1.288 2.778 2.653 0 1.646-1.239 2.742-3.3 2.909v-5.693l.522.129z"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
export default CurrencyDollarIcon;
|
|
@@ -10,6 +10,7 @@ export { default as CaretDownFillIcon } from './CaretDownFillIcon';
|
|
|
10
10
|
export { default as CaretLeftFillIcon } from './CaretLeftFillIcon';
|
|
11
11
|
export { default as CaretRightFillIcon } from './CaretRightFillIcon';
|
|
12
12
|
export { default as CaretUpFillIcon } from './CaretUpFillIcon';
|
|
13
|
+
export { default as CheckAllIcon } from './CheckAllIcon';
|
|
13
14
|
export { default as CheckIcon } from './CheckIcon';
|
|
14
15
|
export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
15
16
|
export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
@@ -18,6 +19,7 @@ export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
|
18
19
|
export { default as CircleIcon } from './CircleIcon';
|
|
19
20
|
export { default as CrossFullfiledIcon } from './CrossFullfiledIcon';
|
|
20
21
|
export { default as CrossIcon } from './CrossIcon';
|
|
22
|
+
export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
|
|
21
23
|
export { default as DashIcon } from './DashIcon';
|
|
22
24
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
23
25
|
export { default as FileEarmarkCheckIcon } from './FileEarmarkCheckIcon';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.97016 4.97001C9.11102 4.8359 9.29848 4.76176 9.49297 4.76323C9.68747 4.7647 9.87378 4.84167 10.0126 4.9779C10.1514 5.11413 10.2319 5.29896 10.237 5.49339C10.2422 5.68782 10.1716 5.87664 10.0402 6.02001L6.05016 11.01C5.98155 11.0839 5.89874 11.1432 5.80669 11.1844C5.71464 11.2255 5.61523 11.2477 5.51441 11.2496C5.41359 11.2515 5.31343 11.233 5.21991 11.1952C5.1264 11.1575 5.04146 11.1013 4.97016 11.03L2.32416 8.38401C2.25047 8.31535 2.19137 8.23255 2.15038 8.14055C2.10938 8.04855 2.08734 7.94924 2.08557 7.84854C2.08379 7.74783 2.10231 7.6478 2.14003 7.55442C2.17776 7.46103 2.2339 7.37619 2.30512 7.30497C2.37634 7.23376 2.46117 7.17761 2.55456 7.13989C2.64795 7.10217 2.74798 7.08364 2.84868 7.08542C2.94938 7.0872 3.0487 7.10924 3.1407 7.15023C3.23269 7.19122 3.3155 7.25033 3.38416 7.32401L5.47816 9.41701L8.95016 4.99201C8.95638 4.98429 8.96306 4.97695 8.97016 4.97001V4.97001ZM8.05016 10.11L8.97016 11.03C9.04144 11.1012 9.12632 11.1572 9.21974 11.1949C9.31316 11.2325 9.4132 11.2509 9.5139 11.2491C9.6146 11.2472 9.71389 11.2251 9.80585 11.184C9.89781 11.1429 9.98056 11.0838 10.0492 11.01L14.0412 6.02001C14.1129 5.94921 14.1696 5.86469 14.2079 5.77149C14.2462 5.67829 14.2654 5.57832 14.2642 5.47755C14.263 5.37679 14.2415 5.27729 14.2011 5.18501C14.1606 5.09273 14.1019 5.00955 14.0286 4.94044C13.9552 4.87133 13.8687 4.81772 13.7742 4.78279C13.6797 4.74786 13.5791 4.73234 13.4784 4.73715C13.3778 4.74197 13.2791 4.76702 13.1883 4.8108C13.0976 4.85459 13.0166 4.91622 12.9502 4.99201L9.47716 9.41701L8.99216 8.93101L8.04916 10.11H8.05016Z" fill="#001007" fill-opacity="0.5"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 16.1715C6.222 18.672 8.2695 20.4465 11.3865 20.676V22.5H12.951V20.676C16.356 20.4075 18.468 18.519 18.468 15.726C18.468 13.341 17.0475 11.961 14.034 11.184L12.951 10.9035V5.2005C14.634 5.3655 15.7695 6.2715 16.056 7.6245H18.261C18.012 5.2245 15.951 3.5025 12.951 3.312V1.5H11.3865V3.3495C8.478 3.6945 6.4815 5.5575 6.4815 8.0835C6.4815 10.2645 7.9305 11.808 10.473 12.459L11.388 12.702V18.7485C9.6645 18.4935 8.478 17.5485 8.1915 16.1715H6ZM11.0865 10.4175C9.522 10.023 8.6865 9.18 8.6865 7.9935C8.6865 6.5775 9.7425 5.532 11.3865 5.2515V10.494L11.0865 10.419V10.4175ZM13.473 13.2255C15.4035 13.71 16.251 14.514 16.251 15.879C16.251 17.5245 15.012 18.621 12.951 18.7875V13.095L13.473 13.224V13.2255Z" fill="#1E1E1E"/>
|
|
3
|
+
</svg>
|