@abqm-ds/icons 4.0.20 → 4.0.21
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 +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +463 -330
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +459 -330
- package/package.json +1 -1
- package/src/components/icons/EyeFillIcon.tsx +18 -0
- package/src/components/icons/EyeIcon.tsx +21 -0
- package/src/components/icons/EyeSlashFillIcon.tsx +21 -0
- package/src/components/icons/EyeSlashIcon.tsx +25 -0
- package/src/components/icons/index.ts +4 -0
- package/src/icons/eye-fill.svg +4 -0
- package/src/icons/eye-slash-fill.svg +4 -0
- package/src/icons/eye-slash.svg +5 -0
- package/src/icons/eye.svg +4 -0
package/package.json
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const EyeFillIcon = (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 fill={props?.fill ? props.fill : '#1E1E1E'} d="M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0" />
|
|
12
|
+
<path
|
|
13
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
14
|
+
d="M0 12s4.5-8.25 12-8.25S24 12 24 12s-4.5 8.25-12 8.25S0 12 0 12m12 5.25a5.25 5.25 0 1 0 0-10.5 5.25 5.25 0 0 0 0 10.5"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
export default EyeFillIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const EyeIcon = (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="M24 12s-4.5-8.25-12-8.25S0 12 0 12s4.5 8.25 12 8.25S24 12 24 12M1.76 12a19.7 19.7 0 0 1 2.49-3.065C6.18 7.002 8.82 5.25 12 5.25s5.819 1.752 7.752 3.685c.93.936 1.765 1.963 2.49 3.065q-.13.195-.293.432a20 20 0 0 1-2.197 2.633C17.819 16.998 15.179 18.75 12 18.75c-3.18 0-5.818-1.752-7.752-3.685A19.7 19.7 0 0 1 1.758 12z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
17
|
+
d="M12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5M6.75 12a5.25 5.25 0 1 1 10.5 0 5.25 5.25 0 0 1-10.5 0"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
export default EyeIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const EyeSlashFillIcon = (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="m16.185 19.368-2.421-2.422a5.251 5.251 0 0 1-6.711-6.712l-3.09-3.09C1.407 9.418 0 12 0 12s4.5 8.25 12 8.25a10.5 10.5 0 0 0 4.185-.882M7.815 4.632A10.5 10.5 0 0 1 12 3.75c7.5 0 12 8.25 12 8.25s-1.408 2.582-3.962 4.857l-3.093-3.093a5.251 5.251 0 0 0-6.71-6.711l-2.42-2.42z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
17
|
+
d="M8.288 11.469a3.75 3.75 0 0 0 4.243 4.244l-4.245-4.244zm7.425 1.062-4.244-4.245a3.75 3.75 0 0 1 4.244 4.244zm4.756 9-18-18 1.062-1.062 18 18z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
);
|
|
21
|
+
export default EyeSlashFillIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
const EyeSlashIcon = (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="M20.038 16.857C22.59 14.58 24 12 24 12s-4.5-8.25-12-8.25c-1.44.005-2.865.305-4.185.882L8.97 5.789A8.9 8.9 0 0 1 12 5.25c3.18 0 5.818 1.752 7.752 3.685.93.936 1.765 1.963 2.49 3.065q-.13.195-.293.432a20 20 0 0 1-2.197 2.633q-.372.372-.776.729z"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
17
|
+
d="M16.946 13.764a5.249 5.249 0 0 0-6.712-6.711l1.235 1.235a3.75 3.75 0 0 1 4.244 4.243zm-4.415 1.949 1.233 1.233a5.249 5.249 0 0 1-6.711-6.712l1.235 1.235a3.75 3.75 0 0 0 4.243 4.244"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
fill={props?.fill ? props.fill : '#1E1E1E'}
|
|
21
|
+
d="M5.025 8.205q-.406.36-.777.73A19.7 19.7 0 0 0 1.758 12l.293.432a20 20 0 0 0 2.197 2.633C6.181 16.998 8.822 18.75 12 18.75c1.074 0 2.085-.2 3.03-.54l1.155 1.158c-1.32.577-2.744.877-4.185.882C4.5 20.25 0 12 0 12s1.409-2.582 3.962-4.857l1.062 1.063zm15.444 13.326-18-18 1.062-1.062 18 18z"
|
|
22
|
+
/>
|
|
23
|
+
</svg>
|
|
24
|
+
);
|
|
25
|
+
export default EyeSlashIcon;
|
|
@@ -21,6 +21,10 @@ export { default as CrossFullfiledIcon } from './CrossFullfiledIcon';
|
|
|
21
21
|
export { default as CrossIcon } from './CrossIcon';
|
|
22
22
|
export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
|
|
23
23
|
export { default as DashIcon } from './DashIcon';
|
|
24
|
+
export { default as EyeFillIcon } from './EyeFillIcon';
|
|
25
|
+
export { default as EyeIcon } from './EyeIcon';
|
|
26
|
+
export { default as EyeSlashFillIcon } from './EyeSlashFillIcon';
|
|
27
|
+
export { default as EyeSlashIcon } from './EyeSlashIcon';
|
|
24
28
|
export { default as FacebookIcon } from './FacebookIcon';
|
|
25
29
|
export { default as FileEarmarkCheckIcon } from './FileEarmarkCheckIcon';
|
|
26
30
|
export { default as FileEarmarkTextIcon } from './FileEarmarkTextIcon';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.75 12C15.75 12.9946 15.3549 13.9484 14.6517 14.6517C13.9484 15.3549 12.9946 15.75 12 15.75C11.0054 15.75 10.0516 15.3549 9.34835 14.6517C8.64509 13.9484 8.25 12.9946 8.25 12C8.25 11.0054 8.64509 10.0516 9.34835 9.34835C10.0516 8.64509 11.0054 8.25 12 8.25C12.9946 8.25 13.9484 8.64509 14.6517 9.34835C15.3549 10.0516 15.75 11.0054 15.75 12Z" fill="#1E1E1E"/>
|
|
3
|
+
<path d="M0 12C0 12 4.5 3.75 12 3.75C19.5 3.75 24 12 24 12C24 12 19.5 20.25 12 20.25C4.5 20.25 0 12 0 12ZM12 17.25C13.3924 17.25 14.7277 16.6969 15.7123 15.7123C16.6969 14.7277 17.25 13.3924 17.25 12C17.25 10.6076 16.6969 9.27226 15.7123 8.28769C14.7277 7.30312 13.3924 6.75 12 6.75C10.6076 6.75 9.27226 7.30312 8.28769 8.28769C7.30312 9.27226 6.75 10.6076 6.75 12C6.75 13.3924 7.30312 14.7277 8.28769 15.7123C9.27226 16.6969 10.6076 17.25 12 17.25Z" fill="#1E1E1E"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16.185 19.368L13.764 16.9455C12.8278 17.2802 11.8157 17.3422 10.8456 17.1243C9.87554 16.9063 8.98729 16.4173 8.28423 15.7143C7.58117 15.0112 7.09221 14.123 6.87424 13.1529C6.65628 12.1828 6.71827 11.1707 7.053 10.2345L3.963 7.1445C1.407 9.417 0 12 0 12C0 12 4.5 20.25 12 20.25C13.4406 20.245 14.8649 19.9448 16.185 19.368ZM7.815 4.632C9.13508 4.05514 10.5594 3.75496 12 3.75C19.5 3.75 24 12 24 12C24 12 22.5915 14.5815 20.0385 16.857L16.9455 13.764C17.2802 12.8278 17.3422 11.8157 17.1243 10.8456C16.9063 9.87554 16.4173 8.98729 15.7143 8.28423C15.0112 7.58117 14.123 7.09221 13.1529 6.87424C12.1828 6.65628 11.1707 6.71827 10.2345 7.053L7.815 4.6335V4.632Z" fill="#1E1E1E"/>
|
|
3
|
+
<path d="M8.28774 11.469C8.20523 12.0455 8.25811 12.6332 8.44218 13.1857C8.62626 13.7382 8.93648 14.2402 9.34826 14.652C9.76003 15.0638 10.2621 15.374 10.8145 15.5581C11.367 15.7421 11.9548 15.795 12.5312 15.7125L8.28624 11.469H8.28774ZM15.7127 12.531L11.4692 8.28599C12.0457 8.20348 12.6335 8.25636 13.1859 8.44044C13.7384 8.62452 14.2404 8.93473 14.6522 9.34651C15.064 9.75829 15.3742 10.2603 15.5583 10.8128C15.7424 11.3653 15.7952 11.953 15.7127 12.5295V12.531ZM20.4692 21.531L2.46924 3.53099L3.53124 2.46899L21.5312 20.469L20.4692 21.531Z" fill="#1E1E1E"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M20.0384 16.857C22.5899 14.58 23.9999 12 23.9999 12C23.9999 12 19.4999 3.75 11.9999 3.75C10.5593 3.75496 9.13502 4.05514 7.81494 4.632L8.96994 5.7885C9.94109 5.43473 10.9664 5.25252 11.9999 5.25C15.1799 5.25 17.8184 7.002 19.7519 8.9355C20.6825 9.87104 21.5167 10.8977 22.2419 12C22.1549 12.1305 22.0589 12.2745 21.9494 12.432C21.4469 13.152 20.7044 14.112 19.7519 15.0645C19.5044 15.312 19.2464 15.5565 18.9764 15.7935L20.0384 16.857Z" fill="#1E1E1E"/>
|
|
3
|
+
<path d="M16.9455 13.764C17.2803 12.8278 17.3423 11.8158 17.1243 10.8457C16.9063 9.87558 16.4174 8.98733 15.7143 8.28427C15.0113 7.58121 14.123 7.09225 13.1529 6.87429C12.1828 6.65632 11.1708 6.71831 10.2345 7.05304L11.469 8.28754C12.0455 8.20503 12.6333 8.25791 13.1857 8.44199C13.7382 8.62607 14.2402 8.93628 14.652 9.34806C15.0638 9.75984 15.374 10.2619 15.5581 10.8143C15.7422 11.3668 15.7951 11.9546 15.7125 12.531L16.9455 13.764ZM12.531 15.7125L13.764 16.9455C12.8278 17.2803 11.8158 17.3423 10.8457 17.1243C9.87558 16.9063 8.98733 16.4174 8.28427 15.7143C7.58121 15.0113 7.09225 14.123 6.87429 13.1529C6.65632 12.1828 6.71831 11.1708 7.05304 10.2345L8.28754 11.469C8.20503 12.0455 8.25791 12.6333 8.44199 13.1857C8.62607 13.7382 8.93628 14.2402 9.34806 14.652C9.75984 15.0638 10.2619 15.374 10.8143 15.5581C11.3668 15.7422 11.9546 15.7951 12.531 15.7125Z" fill="#1E1E1E"/>
|
|
4
|
+
<path d="M5.025 8.20499C4.755 8.44499 4.4955 8.68799 4.248 8.93549C3.31747 9.87103 2.48328 10.8977 1.758 12L2.0505 12.432C2.553 13.152 3.2955 14.112 4.248 15.0645C6.1815 16.998 8.8215 18.75 12 18.75C13.074 18.75 14.085 18.5505 15.03 18.21L16.185 19.368C14.8649 19.9448 13.4406 20.245 12 20.25C4.5 20.25 0 12 0 12C0 12 1.4085 9.41849 3.9615 7.14299L5.0235 8.20649L5.025 8.20499ZM20.469 21.531L2.469 3.53099L3.531 2.46899L21.531 20.469L20.469 21.531Z" fill="#1E1E1E"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M24 12C24 12 19.5 3.75 12 3.75C4.5 3.75 0 12 0 12C0 12 4.5 20.25 12 20.25C19.5 20.25 24 12 24 12ZM1.7595 12C2.48477 10.8977 3.31896 9.87103 4.2495 8.9355C6.18 7.002 8.82 5.25 12 5.25C15.18 5.25 17.8185 7.002 19.752 8.9355C20.6825 9.87103 21.5167 10.8977 22.242 12C22.155 12.1305 22.059 12.2745 21.9495 12.432C21.447 13.152 20.7045 14.112 19.752 15.0645C17.8185 16.998 15.1785 18.75 12 18.75C8.82 18.75 6.1815 16.998 4.248 15.0645C3.31747 14.129 2.48328 13.1023 1.758 12H1.7595Z" fill="#1E1E1E"/>
|
|
3
|
+
<path d="M12 8.25C11.0054 8.25 10.0516 8.64509 9.34835 9.34835C8.64509 10.0516 8.25 11.0054 8.25 12C8.25 12.9946 8.64509 13.9484 9.34835 14.6517C10.0516 15.3549 11.0054 15.75 12 15.75C12.9946 15.75 13.9484 15.3549 14.6517 14.6517C15.3549 13.9484 15.75 12.9946 15.75 12C15.75 11.0054 15.3549 10.0516 14.6517 9.34835C13.9484 8.64509 12.9946 8.25 12 8.25ZM6.75 12C6.75 10.6076 7.30312 9.27226 8.28769 8.28769C9.27226 7.30312 10.6076 6.75 12 6.75C13.3924 6.75 14.7277 7.30312 15.7123 8.28769C16.6969 9.27226 17.25 10.6076 17.25 12C17.25 13.3924 16.6969 14.7277 15.7123 15.7123C14.7277 16.6969 13.3924 17.25 12 17.25C10.6076 17.25 9.27226 16.6969 8.28769 15.7123C7.30312 14.7277 6.75 13.3924 6.75 12Z" fill="#1E1E1E"/>
|
|
4
|
+
</svg>
|