@abqm-ds/icons 4.0.9 → 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 +6 -0
- package/dist/index.cjs +356 -332
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +355 -332
- package/package.json +1 -1
- package/src/components/icons/CurrencyDollarIcon.tsx +17 -0
- package/src/components/icons/index.ts +1 -0
- package/src/icons/currency-dollar.svg +3 -0
package/package.json
CHANGED
|
@@ -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;
|
|
@@ -19,6 +19,7 @@ export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
|
19
19
|
export { default as CircleIcon } from './CircleIcon';
|
|
20
20
|
export { default as CrossFullfiledIcon } from './CrossFullfiledIcon';
|
|
21
21
|
export { default as CrossIcon } from './CrossIcon';
|
|
22
|
+
export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
|
|
22
23
|
export { default as DashIcon } from './DashIcon';
|
|
23
24
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
24
25
|
export { default as FileEarmarkCheckIcon } from './FileEarmarkCheckIcon';
|
|
@@ -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>
|