huspy-icons 0.2.2 → 0.3.0
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/README.md +3 -4
- package/dist/fonts/HuspyIcons.css +21 -21
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +17 -17
- package/dist/fonts/HuspyIcons.ts +19 -19
- package/dist/fonts/HuspyIcons.ttf +0 -0
- package/dist/fonts/HuspyIcons.woff +0 -0
- package/dist/fonts/HuspyIcons.woff2 +0 -0
- package/dist/native/index.d.ts +1 -1
- package/dist/native/index.js +17 -17
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -4
- package/dist/react/index.d.ts +4 -4
- package/dist/react/index.js +136 -131
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +121 -116
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +18 -18
- package/src/react/Bell.tsx +1 -5
- package/src/react/FileSignature.tsx +38 -0
- package/src/react/Icon.tsx +4 -4
- package/src/react/index.ts +1 -1
- package/src/react/index.tsx +1 -1
- package/src/react/BellLinear.tsx +0 -32
package/package.json
CHANGED
package/src/native/glyphMap.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* Available icon names in the HuspyIcons font
|
|
6
6
|
*/
|
|
7
|
-
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-text' | 'file-spreadsheet' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | '
|
|
7
|
+
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'share' | 'search' | 'search-x' | 'rent' | 'properties-linear' | 'properties-filled' | 'plus' | 'payments' | 'note' | 'mortgage' | 'mail' | 'logout' | 'lock' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'icon-slot' | 'home-linear' | 'home-filled' | 'help-circle' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-check' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'edit' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'cancel' | 'cancel-circle-solid' | 'bell' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'alert-triangle';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Mapping of icon names to unicode codepoints
|
|
@@ -36,23 +36,23 @@ export const glyphMap: Record<IconName, number> = {
|
|
|
36
36
|
"help-circle": 61719,
|
|
37
37
|
"file-text": 61720,
|
|
38
38
|
"file-spreadsheet": 61721,
|
|
39
|
-
"file-
|
|
40
|
-
"file-
|
|
41
|
-
"file-
|
|
42
|
-
"
|
|
43
|
-
"eye-
|
|
44
|
-
"
|
|
45
|
-
"explore-
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"chevron-
|
|
49
|
-
"chevron-
|
|
50
|
-
"chevron-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"cancel
|
|
54
|
-
"
|
|
55
|
-
"bell
|
|
39
|
+
"file-signature": 61722,
|
|
40
|
+
"file-lock": 61723,
|
|
41
|
+
"file-key": 61724,
|
|
42
|
+
"file-check": 61725,
|
|
43
|
+
"eye-visible": 61726,
|
|
44
|
+
"eye-hidden": 61727,
|
|
45
|
+
"explore-linear": 61728,
|
|
46
|
+
"explore-filled": 61729,
|
|
47
|
+
"edit": 61730,
|
|
48
|
+
"chevron-up": 61731,
|
|
49
|
+
"chevron-right": 61732,
|
|
50
|
+
"chevron-left": 61733,
|
|
51
|
+
"chevron-down": 61734,
|
|
52
|
+
"check": 61735,
|
|
53
|
+
"cancel": 61736,
|
|
54
|
+
"cancel-circle-solid": 61737,
|
|
55
|
+
"bell": 61738,
|
|
56
56
|
"arrow-up": 61739,
|
|
57
57
|
"arrow-up-right": 61740,
|
|
58
58
|
"arrow-up-left": 61741,
|
package/src/react/Bell.tsx
CHANGED
|
@@ -14,14 +14,10 @@ const SvgBell = ({ size = 16, ...props }: ReactIconProps) => {
|
|
|
14
14
|
{...props}
|
|
15
15
|
>
|
|
16
16
|
<path
|
|
17
|
-
|
|
18
|
-
clipRule="evenodd"
|
|
19
|
-
d="M12.0001 3C10.674 3 9.40223 3.52678 8.46454 4.46447C7.52686 5.40215 7.00008 6.67392 7.00008 8C7.00008 11.6473 6.21715 14.0654 5.37797 15.6039C5.30188 15.7434 5.22549 15.8753 5.1494 16H18.8508C18.7747 15.8753 18.6983 15.7434 18.6222 15.6039C17.783 14.0654 17.0001 11.6473 17.0001 8C17.0001 6.67392 16.4733 5.40215 15.5356 4.46447C14.5979 3.52678 13.3262 3 12.0001 3ZM21.5664 16.1758C21.5657 16.1753 21.5647 16.1746 21.5635 16.1737C21.5558 16.168 21.538 16.1544 21.5114 16.1322C21.4581 16.0878 21.3698 16.0091 21.2573 15.8904C21.0329 15.6535 20.7098 15.2544 20.378 14.6461C19.7171 13.4346 19.0001 11.3527 19.0001 8C19.0001 6.14349 18.2626 4.36301 16.9498 3.05025C15.6371 1.7375 13.8566 1 12.0001 1C10.1436 1 8.36309 1.7375 7.05033 3.05025C5.73758 4.36301 5.00008 6.14348 5.00008 8C5.00008 11.3527 4.28301 13.4346 3.62218 14.6461C3.29039 15.2544 2.9673 15.6535 2.74288 15.8904C2.6304 16.0091 2.54202 16.0878 2.4888 16.1322C2.46218 16.1544 2.44432 16.168 2.43663 16.1737C2.43542 16.1746 2.43447 16.1753 2.43377 16.1758C2.07528 16.4221 1.91664 16.8725 2.04299 17.2898C2.17068 17.7115 2.55941 18 3.00008 18H21.0001C21.4407 18 21.8295 17.7115 21.9572 17.2898C22.0835 16.8725 21.9249 16.4221 21.5664 16.1758Z"
|
|
17
|
+
d="M12.0001 3C13.3262 3 14.5979 3.52678 15.5356 4.46447C16.4733 5.40215 17.0001 6.67392 17.0001 8C17.0001 11.6473 17.783 14.0654 18.6222 15.6039C18.6983 15.7434 18.7747 15.8753 18.8508 16L5.1494 16C5.22549 15.8753 5.30188 15.7434 5.37797 15.6039C6.21715 14.0654 7.00008 11.6473 7.00008 8C7.00008 6.67392 7.52686 5.40215 8.46454 4.46447C9.40223 3.52678 10.674 3 12.0001 3zM21.5664 16.1758C21.5657 16.1753 21.5647 16.1746 21.5635 16.1737C21.5558 16.168 21.538 16.1544 21.5114 16.1322C21.4581 16.0878 21.3698 16.0091 21.2573 15.8904C21.0329 15.6535 20.7098 15.2544 20.378 14.6461C19.7171 13.4346 19.0001 11.3527 19.0001 8C19.0001 6.14349 18.2626 4.36301 16.9498 3.05025C15.6371 1.7375 13.8566 1 12.0001 1C10.1436 1 8.36309 1.7375 7.05033 3.05025C5.73758 4.36301 5.00008 6.14348 5.00008 8C5.00008 11.3527 4.28301 13.4346 3.62218 14.6461C3.29039 15.2544 2.9673 15.6535 2.74288 15.8904C2.6304 16.0091 2.54202 16.0878 2.4888 16.1322C2.46218 16.1544 2.44432 16.168 2.43663 16.1737C2.43542 16.1746 2.43447 16.1753 2.43377 16.1758C2.07528 16.4221 1.91664 16.8725 2.04299 17.2898C2.17068 17.7115 2.55941 18 3.00008 18H21.0001C21.4407 18 21.8295 17.7115 21.9572 17.2898C22.0835 16.8725 21.9249 16.4221 21.5664 16.1758z"
|
|
20
18
|
fill="currentColor"
|
|
21
19
|
/>
|
|
22
20
|
<path
|
|
23
|
-
fillRule="evenodd"
|
|
24
|
-
clipRule="evenodd"
|
|
25
21
|
d="M9.81829 20.1237C10.3023 19.8576 10.9103 20.0343 11.1764 20.5182C11.2575 20.6657 11.3767 20.7887 11.5216 20.8744C11.6665 20.9601 11.8317 21.0053 12.0001 21.0053C12.1684 21.0053 12.3337 20.9601 12.4786 20.8744C12.6235 20.7887 12.7427 20.6657 12.8238 20.5182C13.0899 20.0343 13.6979 19.8576 14.1819 20.1237C14.6658 20.3898 14.8424 20.9978 14.5764 21.4818C14.3227 21.9432 13.9498 22.3279 13.4966 22.5959C13.0434 22.8639 12.5266 23.0053 12.0001 23.0053C11.4736 23.0053 10.9567 22.8639 10.5035 22.5959C10.0504 22.3279 9.67745 21.9432 9.42379 21.4818C9.15771 20.9978 9.33433 20.3898 9.81829 20.1237Z"
|
|
26
22
|
fill="currentColor"
|
|
27
23
|
/>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgFileSignature = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
+
const sizeValue = resolveSize(size);
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
width={sizeValue} height={sizeValue}
|
|
11
|
+
viewBox="0 0 24 24"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}
|
|
15
|
+
>
|
|
16
|
+
<path
|
|
17
|
+
fillRule="evenodd"
|
|
18
|
+
clipRule="evenodd"
|
|
19
|
+
d="M6 3C5.73478 3 5.48043 3.10536 5.29289 3.29289C5.10536 3.48043 5 3.73478 5 4V20C5 20.2652 5.10536 20.5196 5.29289 20.7071C5.48043 20.8946 5.73478 21 6 21H18C18.2652 21 18.5196 20.8946 18.7071 20.7071C18.8946 20.5196 19 20.2652 19 20V19.5C19 18.9477 19.4477 18.5 20 18.5C20.5523 18.5 21 18.9477 21 19.5V20C21 20.7957 20.6839 21.5587 20.1213 22.1213C19.5587 22.6839 18.7957 23 18 23H6C5.20435 23 4.44129 22.6839 3.87868 22.1213C3.31607 21.5587 3 20.7957 3 20V4C3 3.20435 3.31607 2.44129 3.87868 1.87868C4.44129 1.31607 5.20435 1 6 1H14.5C14.7652 1 15.0196 1.10536 15.2071 1.29289L18.7071 4.79289C19.0976 5.18342 19.0976 5.81658 18.7071 6.20711C18.3166 6.59763 17.6834 6.59763 17.2929 6.20711L14.0858 3H6Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M7 18C7 17.4477 7.44772 17 8 17H9C9.55228 17 10 17.4477 10 18C10 18.5523 9.55228 19 9 19H8C7.44772 19 7 18.5523 7 18Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M19.905 9.99489C19.7605 9.99489 19.6175 10.0233 19.484 10.0786C19.3507 10.1339 19.2295 10.2148 19.1275 10.3168C19.1273 10.3169 19.1276 10.3166 19.1275 10.3168L14.8929 14.5609L14.3768 16.6199L16.4388 16.0979L20.6829 11.8729C20.6827 11.8731 20.6831 11.8727 20.6829 11.8729C20.7847 11.7709 20.8662 11.6492 20.9214 11.516C20.9767 11.3825 21.0051 11.2395 21.0051 11.095C21.0051 10.9505 20.9767 10.8075 20.9214 10.674C20.8661 10.5405 20.785 10.4193 20.6829 10.3171C20.5807 10.215 20.4595 10.1339 20.326 10.0786C20.1925 10.0233 20.0495 9.99489 19.905 9.99489ZM18.7186 8.23087C19.0948 8.07508 19.4979 7.99489 19.905 7.99489C20.3121 7.99489 20.7152 8.07508 21.0914 8.23087C21.4675 8.38667 21.8092 8.61502 22.0971 8.90289C22.385 9.19076 22.6133 9.53252 22.7691 9.90864C22.9249 10.2848 23.0051 10.6879 23.0051 11.095C23.0051 11.5021 22.9249 11.9052 22.7691 12.2814C22.6133 12.6575 22.385 12.9992 22.0971 13.2871L22.0955 13.2887L17.6555 17.7087C17.5283 17.8353 17.3694 17.9254 17.1954 17.9694L13.2454 18.9694C12.9043 19.0558 12.5429 18.9565 12.2937 18.7079C12.0446 18.4594 11.9445 18.0982 12.03 17.7569L13.02 13.8069C13.0639 13.6316 13.1545 13.4716 13.2821 13.3437L17.7129 8.90289C18.0008 8.61502 18.3425 8.38667 18.7186 8.23087Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export default SvgFileSignature;
|
package/src/react/Icon.tsx
CHANGED
|
@@ -16,7 +16,6 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
16
16
|
// Icon: arrow-up-left
|
|
17
17
|
// Icon: arrow-up-right
|
|
18
18
|
// Icon: bell
|
|
19
|
-
// Icon: bell-linear
|
|
20
19
|
// Icon: cancel
|
|
21
20
|
// Icon: cancel-circle-solid
|
|
22
21
|
// Icon: check
|
|
@@ -32,6 +31,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
32
31
|
// Icon: file-check
|
|
33
32
|
// Icon: file-key
|
|
34
33
|
// Icon: file-lock
|
|
34
|
+
// Icon: file-signature
|
|
35
35
|
// Icon: file-spreadsheet
|
|
36
36
|
// Icon: file-text
|
|
37
37
|
// Icon: help-circle
|
|
@@ -61,7 +61,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
61
61
|
/**
|
|
62
62
|
* Available icon names
|
|
63
63
|
*/
|
|
64
|
-
export type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | '
|
|
64
|
+
export type IconName = 'alert-triangle' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'bell' | 'cancel' | 'cancel-circle-solid' | 'check' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'edit' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'file-check' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'help-circle' | 'home-filled' | 'home-linear' | 'icon-slot' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lock' | 'logout' | 'mail' | 'mortgage' | 'note' | 'payments' | 'plus' | 'properties-filled' | 'properties-linear' | 'rent' | 'search' | 'search-x' | 'share' | 'trash2' | 'user' | 'whatsapp';
|
|
65
65
|
|
|
66
66
|
/**
|
|
67
67
|
* Props for the unified Icon component
|
|
@@ -103,8 +103,6 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
103
103
|
return import('./ArrowUpRight').then(m => m.default);
|
|
104
104
|
case 'bell':
|
|
105
105
|
return import('./Bell').then(m => m.default);
|
|
106
|
-
case 'bell-linear':
|
|
107
|
-
return import('./BellLinear').then(m => m.default);
|
|
108
106
|
case 'cancel':
|
|
109
107
|
return import('./Cancel').then(m => m.default);
|
|
110
108
|
case 'cancel-circle-solid':
|
|
@@ -135,6 +133,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
135
133
|
return import('./FileKey').then(m => m.default);
|
|
136
134
|
case 'file-lock':
|
|
137
135
|
return import('./FileLock').then(m => m.default);
|
|
136
|
+
case 'file-signature':
|
|
137
|
+
return import('./FileSignature').then(m => m.default);
|
|
138
138
|
case 'file-spreadsheet':
|
|
139
139
|
return import('./FileSpreadsheet').then(m => m.default);
|
|
140
140
|
case 'file-text':
|
package/src/react/index.ts
CHANGED
|
@@ -10,7 +10,6 @@ export { default as ArrowUpDown } from './ArrowUpDown';
|
|
|
10
10
|
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
11
11
|
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
12
12
|
export { default as Bell } from './Bell';
|
|
13
|
-
export { default as BellLinear } from './BellLinear';
|
|
14
13
|
export { default as Cancel } from './Cancel';
|
|
15
14
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
16
15
|
export { default as Check } from './Check';
|
|
@@ -26,6 +25,7 @@ export { default as EyeVisible } from './EyeVisible';
|
|
|
26
25
|
export { default as FileCheck } from './FileCheck';
|
|
27
26
|
export { default as FileKey } from './FileKey';
|
|
28
27
|
export { default as FileLock } from './FileLock';
|
|
28
|
+
export { default as FileSignature } from './FileSignature';
|
|
29
29
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
30
30
|
export { default as FileText } from './FileText';
|
|
31
31
|
export { default as HelpCircle } from './HelpCircle';
|
package/src/react/index.tsx
CHANGED
|
@@ -8,7 +8,6 @@ export { default as ArrowUpDown } from './ArrowUpDown';
|
|
|
8
8
|
export { default as ArrowUpLeft } from './ArrowUpLeft';
|
|
9
9
|
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
10
10
|
export { default as ArrowUp } from './ArrowUp';
|
|
11
|
-
export { default as BellLinear } from './BellLinear';
|
|
12
11
|
export { default as Bell } from './Bell';
|
|
13
12
|
export { default as CancelCircleSolid } from './CancelCircleSolid';
|
|
14
13
|
export { default as Cancel } from './Cancel';
|
|
@@ -25,6 +24,7 @@ export { default as EyeVisible } from './EyeVisible';
|
|
|
25
24
|
export { default as FileCheck } from './FileCheck';
|
|
26
25
|
export { default as FileKey } from './FileKey';
|
|
27
26
|
export { default as FileLock } from './FileLock';
|
|
27
|
+
export { default as FileSignature } from './FileSignature';
|
|
28
28
|
export { default as FileSpreadsheet } from './FileSpreadsheet';
|
|
29
29
|
export { default as FileText } from './FileText';
|
|
30
30
|
export { default as HelpCircle } from './HelpCircle';
|
package/src/react/BellLinear.tsx
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import type { ReactIconProps } from '../shared/types';
|
|
3
|
-
import { resolveSize } from '../shared/types';
|
|
4
|
-
|
|
5
|
-
const SvgBellLinear = ({ size = 16, ...props }: ReactIconProps) => {
|
|
6
|
-
const sizeValue = resolveSize(size);
|
|
7
|
-
|
|
8
|
-
return (
|
|
9
|
-
<svg
|
|
10
|
-
width={sizeValue} height={sizeValue}
|
|
11
|
-
viewBox="0 0 24 24"
|
|
12
|
-
fill="none"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
{...props}
|
|
15
|
-
>
|
|
16
|
-
<path
|
|
17
|
-
fillRule="evenodd"
|
|
18
|
-
clipRule="evenodd"
|
|
19
|
-
d="M12.0001 3C10.674 3 9.40223 3.52678 8.46454 4.46447C7.52686 5.40215 7.00008 6.67392 7.00008 8C7.00008 11.6473 6.21715 14.0654 5.37797 15.6039C5.30188 15.7434 5.22549 15.8753 5.1494 16H18.8508C18.7747 15.8753 18.6983 15.7434 18.6222 15.6039C17.783 14.0654 17.0001 11.6473 17.0001 8C17.0001 6.67392 16.4733 5.40215 15.5356 4.46447C14.5979 3.52678 13.3262 3 12.0001 3ZM21.5664 16.1758C21.5657 16.1753 21.5647 16.1746 21.5635 16.1737C21.5558 16.168 21.538 16.1544 21.5114 16.1322C21.4581 16.0878 21.3698 16.0091 21.2573 15.8904C21.0329 15.6535 20.7098 15.2544 20.378 14.6461C19.7171 13.4346 19.0001 11.3527 19.0001 8C19.0001 6.14349 18.2626 4.36301 16.9498 3.05025C15.6371 1.7375 13.8566 1 12.0001 1C10.1436 1 8.36309 1.7375 7.05033 3.05025C5.73758 4.36301 5.00008 6.14348 5.00008 8C5.00008 11.3527 4.28301 13.4346 3.62218 14.6461C3.29039 15.2544 2.9673 15.6535 2.74288 15.8904C2.6304 16.0091 2.54202 16.0878 2.4888 16.1322C2.46218 16.1544 2.44432 16.168 2.43663 16.1737C2.43542 16.1746 2.43447 16.1753 2.43377 16.1758C2.07528 16.4221 1.91664 16.8725 2.04299 17.2898C2.17068 17.7115 2.55941 18 3.00008 18H21.0001C21.4407 18 21.8295 17.7115 21.9572 17.2898C22.0835 16.8725 21.9249 16.4221 21.5664 16.1758Z"
|
|
20
|
-
fill="currentColor"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
fillRule="evenodd"
|
|
24
|
-
clipRule="evenodd"
|
|
25
|
-
d="M9.81829 20.1237C10.3023 19.8576 10.9103 20.0343 11.1764 20.5182C11.2575 20.6657 11.3767 20.7887 11.5216 20.8744C11.6665 20.9601 11.8317 21.0053 12.0001 21.0053C12.1684 21.0053 12.3337 20.9601 12.4786 20.8744C12.6235 20.7887 12.7427 20.6657 12.8238 20.5182C13.0899 20.0343 13.6979 19.8576 14.1819 20.1237C14.6658 20.3898 14.8424 20.9978 14.5764 21.4818C14.3227 21.9432 13.9498 22.3279 13.4966 22.5959C13.0434 22.8639 12.5266 23.0053 12.0001 23.0053C11.4736 23.0053 10.9567 22.8639 10.5035 22.5959C10.0504 22.3279 9.67745 21.9432 9.42379 21.4818C9.15771 20.9978 9.33433 20.3898 9.81829 20.1237Z"
|
|
26
|
-
fill="currentColor"
|
|
27
|
-
/>
|
|
28
|
-
</svg>
|
|
29
|
-
);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
export default SvgBellLinear;
|