@abqm-ds/icons 4.0.20 → 4.0.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abqm-ds/icons",
3
- "version": "4.0.20",
3
+ "version": "4.0.22",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,26 @@
1
+ import type { SVGProps } from 'react';
2
+ const ArrowLeftSquareIcon = (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
+ <g clipPath="url(#arrow-left-square_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ fillRule="evenodd"
15
+ d="M22.5 3A1.5 1.5 0 0 0 21 1.5H3A1.5 1.5 0 0 0 1.5 3v18A1.5 1.5 0 0 0 3 22.5h18a1.5 1.5 0 0 0 1.5-1.5zM0 3a3 3 0 0 1 3-3h18a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3zm17.25 8.25a.75.75 0 1 1 0 1.5H8.56l3.221 3.219a.752.752 0 0 1-1.062 1.062l-4.5-4.5a.75.75 0 0 1 0-1.062l4.5-4.5a.75.75 0 1 1 1.062 1.062l-3.22 3.219z"
16
+ clipRule="evenodd"
17
+ />
18
+ </g>
19
+ <defs>
20
+ <clipPath id="arrow-left-square_svg__a">
21
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
25
+ );
26
+ export default ArrowLeftSquareIcon;
@@ -0,0 +1,26 @@
1
+ import type { SVGProps } from 'react';
2
+ const ArrowRightSquareIcon = (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
+ <g clipPath="url(#arrow-right-square_svg__a)">
12
+ <path
13
+ fill={props?.fill ? props.fill : '#1E1E1E'}
14
+ fillRule="evenodd"
15
+ d="M22.5 3A1.5 1.5 0 0 0 21 1.5H3A1.5 1.5 0 0 0 1.5 3v18A1.5 1.5 0 0 0 3 22.5h18a1.5 1.5 0 0 0 1.5-1.5zM0 3a3 3 0 0 1 3-3h18a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3zm6.75 8.25a.75.75 0 1 0 0 1.5h8.69l-3.221 3.219a.752.752 0 0 0 1.062 1.062l4.5-4.5a.75.75 0 0 0 0-1.062l-4.5-4.5a.75.75 0 1 0-1.062 1.062l3.22 3.219z"
16
+ clipRule="evenodd"
17
+ />
18
+ </g>
19
+ <defs>
20
+ <clipPath id="arrow-right-square_svg__a">
21
+ <path fill={props?.fill ? props.fill : '#fff'} d="M0 0h24v24H0z" />
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
25
+ );
26
+ export default ArrowRightSquareIcon;
@@ -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;
@@ -1,5 +1,7 @@
1
1
  export { default as AppleIcon } from './AppleIcon';
2
2
  export { default as ArrowDownShortIcon } from './ArrowDownShortIcon';
3
+ export { default as ArrowLeftSquareIcon } from './ArrowLeftSquareIcon';
4
+ export { default as ArrowRightSquareIcon } from './ArrowRightSquareIcon';
3
5
  export { default as AwardFillIcon } from './AwardFillIcon';
4
6
  export { default as BarChartIcon } from './BarChartIcon';
5
7
  export { default as BarChartLineIcon } from './BarChartLineIcon';
@@ -21,6 +23,10 @@ export { default as CrossFullfiledIcon } from './CrossFullfiledIcon';
21
23
  export { default as CrossIcon } from './CrossIcon';
22
24
  export { default as CurrencyDollarIcon } from './CurrencyDollarIcon';
23
25
  export { default as DashIcon } from './DashIcon';
26
+ export { default as EyeFillIcon } from './EyeFillIcon';
27
+ export { default as EyeIcon } from './EyeIcon';
28
+ export { default as EyeSlashFillIcon } from './EyeSlashFillIcon';
29
+ export { default as EyeSlashIcon } from './EyeSlashIcon';
24
30
  export { default as FacebookIcon } from './FacebookIcon';
25
31
  export { default as FileEarmarkCheckIcon } from './FileEarmarkCheckIcon';
26
32
  export { default as FileEarmarkTextIcon } from './FileEarmarkTextIcon';
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4_481)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5 3C22.5 2.60218 22.342 2.22064 22.0607 1.93934C21.7794 1.65804 21.3978 1.5 21 1.5H3C2.60218 1.5 2.22064 1.65804 1.93934 1.93934C1.65804 2.22064 1.5 2.60218 1.5 3V21C1.5 21.3978 1.65804 21.7794 1.93934 22.0607C2.22064 22.342 2.60218 22.5 3 22.5H21C21.3978 22.5 21.7794 22.342 22.0607 22.0607C22.342 21.7794 22.5 21.3978 22.5 21V3ZM0 3C0 2.20435 0.316071 1.44129 0.87868 0.87868C1.44129 0.316071 2.20435 0 3 0L21 0C21.7956 0 22.5587 0.316071 23.1213 0.87868C23.6839 1.44129 24 2.20435 24 3V21C24 21.7956 23.6839 22.5587 23.1213 23.1213C22.5587 23.6839 21.7956 24 21 24H3C2.20435 24 1.44129 23.6839 0.87868 23.1213C0.316071 22.5587 0 21.7956 0 21V3ZM17.25 11.25C17.4489 11.25 17.6397 11.329 17.7803 11.4697C17.921 11.6103 18 11.8011 18 12C18 12.1989 17.921 12.3897 17.7803 12.5303C17.6397 12.671 17.4489 12.75 17.25 12.75H8.5605L11.781 15.969C11.8507 16.0387 11.906 16.1215 11.9438 16.2126C11.9815 16.3037 12.0009 16.4014 12.0009 16.5C12.0009 16.5986 11.9815 16.6963 11.9438 16.7874C11.906 16.8785 11.8507 16.9613 11.781 17.031C11.7113 17.1007 11.6285 17.156 11.5374 17.1938C11.4463 17.2315 11.3486 17.2509 11.25 17.2509C11.1514 17.2509 11.0537 17.2315 10.9626 17.1938C10.8715 17.156 10.7887 17.1007 10.719 17.031L6.219 12.531C6.14916 12.4613 6.09374 12.3786 6.05593 12.2874C6.01812 12.1963 5.99866 12.0987 5.99866 12C5.99866 11.9013 6.01812 11.8037 6.05593 11.7125C6.09374 11.6214 6.14916 11.5387 6.219 11.469L10.719 6.969C10.8598 6.82817 11.0508 6.74905 11.25 6.74905C11.4492 6.74905 11.6402 6.82817 11.781 6.969C11.9218 7.10983 12.0009 7.30084 12.0009 7.5C12.0009 7.69916 11.9218 7.89017 11.781 8.031L8.5605 11.25H17.25Z" fill="#1E1E1E"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_4_481">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_4_500)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.5 3C22.5 2.60218 22.342 2.22064 22.0607 1.93934C21.7794 1.65804 21.3978 1.5 21 1.5H3C2.60218 1.5 2.22064 1.65804 1.93934 1.93934C1.65804 2.22064 1.5 2.60218 1.5 3V21C1.5 21.3978 1.65804 21.7794 1.93934 22.0607C2.22064 22.342 2.60218 22.5 3 22.5H21C21.3978 22.5 21.7794 22.342 22.0607 22.0607C22.342 21.7794 22.5 21.3978 22.5 21V3ZM0 3C0 2.20435 0.316071 1.44129 0.87868 0.87868C1.44129 0.316071 2.20435 0 3 0L21 0C21.7956 0 22.5587 0.316071 23.1213 0.87868C23.6839 1.44129 24 2.20435 24 3V21C24 21.7956 23.6839 22.5587 23.1213 23.1213C22.5587 23.6839 21.7956 24 21 24H3C2.20435 24 1.44129 23.6839 0.87868 23.1213C0.316071 22.5587 0 21.7956 0 21V3ZM6.75 11.25C6.55109 11.25 6.36032 11.329 6.21967 11.4697C6.07902 11.6103 6 11.8011 6 12C6 12.1989 6.07902 12.3897 6.21967 12.5303C6.36032 12.671 6.55109 12.75 6.75 12.75H15.4395L12.219 15.969C12.1493 16.0387 12.094 16.1215 12.0562 16.2126C12.0185 16.3037 11.9991 16.4014 11.9991 16.5C11.9991 16.5986 12.0185 16.6963 12.0562 16.7874C12.094 16.8785 12.1493 16.9613 12.219 17.031C12.2887 17.1007 12.3715 17.156 12.4626 17.1938C12.5537 17.2315 12.6514 17.2509 12.75 17.2509C12.8486 17.2509 12.9463 17.2315 13.0374 17.1938C13.1285 17.156 13.2113 17.1007 13.281 17.031L17.781 12.531C17.8508 12.4613 17.9063 12.3786 17.9441 12.2874C17.9819 12.1963 18.0013 12.0987 18.0013 12C18.0013 11.9013 17.9819 11.8037 17.9441 11.7125C17.9063 11.6214 17.8508 11.5387 17.781 11.469L13.281 6.969C13.2113 6.89927 13.1285 6.84395 13.0374 6.80621C12.9463 6.76848 12.8486 6.74905 12.75 6.74905C12.6514 6.74905 12.5537 6.76848 12.4626 6.80621C12.3715 6.84395 12.2887 6.89927 12.219 6.969C12.1493 7.03873 12.094 7.12152 12.0562 7.21262C12.0185 7.30373 11.9991 7.40138 11.9991 7.5C11.9991 7.59862 12.0185 7.69627 12.0562 7.78738C12.094 7.87848 12.1493 7.96127 12.219 8.031L15.4395 11.25H6.75Z" fill="#1E1E1E"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_4_500">
7
+ <rect width="24" height="24" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </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="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>