huspy-icons 0.3.11 → 0.3.12
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/dist/fonts/HuspyIcons.css +103 -100
- package/dist/fonts/HuspyIcons.eot +0 -0
- package/dist/fonts/HuspyIcons.json +97 -96
- package/dist/fonts/HuspyIcons.ts +99 -96
- 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 +97 -96
- package/dist/native/index.js.map +1 -1
- package/dist/react/index.d.mts +4 -2
- package/dist/react/index.d.ts +4 -2
- package/dist/react/index.js +136 -49
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +128 -41
- package/dist/react/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/native/glyphMap.ts +98 -97
- package/src/react/Icon.tsx +4 -1
- package/src/react/Tasks.tsx +56 -0
- package/src/react/index.ts +1 -0
- package/src/react/index.tsx +1 -0
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' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'swimming-pool' | 'status-dot' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'history' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'circle-off' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';
|
|
7
|
+
export type IconName = 'whatsapp' | 'user' | 'trash-2' | 'touch-ios' | 'touch-android' | 'time' | 'thermometer-snowflake' | 'terrace' | 'tasks' | 'swimming-pool' | 'status-dot' | 'size-3d' | 'share' | 'search' | 'search-x' | 'sale' | 'restaurant' | 'rent' | 'properties-linear' | 'properties-filled' | 'promotion' | 'plus' | 'pin_map_solid' | 'phone-linear' | 'pet' | 'pencil-line' | 'payments' | 'patio' | 'parking' | 'outside' | 'notes' | 'note' | 'mortgage' | 'more-horizontal' | 'map-pin' | 'mail' | 'magic-wand' | 'logout' | 'lock' | 'lift' | 'leads-linear' | 'leads-filled' | 'keys_01' | 'info' | 'image' | 'image-off' | 'icon-slot' | 'home-linear' | 'home-filled' | 'history' | 'help-circle' | 'heating' | 'gas-heating' | 'garden' | 'filter' | 'file-text' | 'file-spreadsheet' | 'file-signature' | 'file-lock' | 'file-key' | 'file-input' | 'file-check' | 'face-ios-light' | 'face-ios-bold' | 'face-android' | 'eye-visible' | 'eye-hidden' | 'explore-linear' | 'explore-filled' | 'electric' | 'edit' | 'door-open' | 'collections' | 'closet' | 'circle-off' | 'chevron-up' | 'chevron-right' | 'chevron-left' | 'chevron-down' | 'check' | 'check-circle-2' | 'check-check' | 'cancel' | 'cancel-circle-stroke' | 'cancel-circle-solid' | 'calendar' | 'building' | 'bell' | 'bed-double' | 'bath' | 'balcony-window' | 'arrow-up' | 'arrow-up-right' | 'arrow-up-left' | 'arrow-up-down' | 'arrow-right' | 'arrow-left' | 'arrow-down' | 'arrow-down-right' | 'arrow-down-left' | 'archive' | 'alert-triangle' | 'air-conditioner' | 'add-note' | 'accessibility';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Mapping of icon names to unicode codepoints
|
|
@@ -19,102 +19,103 @@ export const glyphMap: Record<IconName, number> = {
|
|
|
19
19
|
"time": 61702,
|
|
20
20
|
"thermometer-snowflake": 61703,
|
|
21
21
|
"terrace": 61704,
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"search
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"properties-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"leads-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"image
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"home-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"file-
|
|
70
|
-
"file-
|
|
71
|
-
"file-
|
|
72
|
-
"file-
|
|
73
|
-
"file-
|
|
74
|
-
"file-
|
|
75
|
-
"
|
|
76
|
-
"face-ios-
|
|
77
|
-
"face-
|
|
78
|
-
"
|
|
79
|
-
"eye-
|
|
80
|
-
"
|
|
81
|
-
"explore-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"chevron-
|
|
90
|
-
"chevron-
|
|
91
|
-
"chevron-
|
|
92
|
-
"
|
|
93
|
-
"check
|
|
94
|
-
"check-
|
|
95
|
-
"
|
|
96
|
-
"cancel
|
|
97
|
-
"cancel-circle-
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"arrow-up
|
|
106
|
-
"arrow-up-
|
|
107
|
-
"arrow-up-
|
|
108
|
-
"arrow-
|
|
109
|
-
"arrow-
|
|
110
|
-
"arrow-
|
|
111
|
-
"arrow-down
|
|
112
|
-
"arrow-down-
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
22
|
+
"tasks": 61705,
|
|
23
|
+
"swimming-pool": 61706,
|
|
24
|
+
"status-dot": 61707,
|
|
25
|
+
"size-3d": 61708,
|
|
26
|
+
"share": 61709,
|
|
27
|
+
"search": 61710,
|
|
28
|
+
"search-x": 61711,
|
|
29
|
+
"sale": 61712,
|
|
30
|
+
"restaurant": 61713,
|
|
31
|
+
"rent": 61714,
|
|
32
|
+
"properties-linear": 61715,
|
|
33
|
+
"properties-filled": 61716,
|
|
34
|
+
"promotion": 61717,
|
|
35
|
+
"plus": 61718,
|
|
36
|
+
"pin_map_solid": 61719,
|
|
37
|
+
"phone-linear": 61720,
|
|
38
|
+
"pet": 61721,
|
|
39
|
+
"pencil-line": 61722,
|
|
40
|
+
"payments": 61723,
|
|
41
|
+
"patio": 61724,
|
|
42
|
+
"parking": 61725,
|
|
43
|
+
"outside": 61726,
|
|
44
|
+
"notes": 61727,
|
|
45
|
+
"note": 61728,
|
|
46
|
+
"mortgage": 61729,
|
|
47
|
+
"more-horizontal": 61730,
|
|
48
|
+
"map-pin": 61731,
|
|
49
|
+
"mail": 61732,
|
|
50
|
+
"magic-wand": 61733,
|
|
51
|
+
"logout": 61734,
|
|
52
|
+
"lock": 61735,
|
|
53
|
+
"lift": 61736,
|
|
54
|
+
"leads-linear": 61737,
|
|
55
|
+
"leads-filled": 61738,
|
|
56
|
+
"keys_01": 61739,
|
|
57
|
+
"info": 61740,
|
|
58
|
+
"image": 61741,
|
|
59
|
+
"image-off": 61742,
|
|
60
|
+
"icon-slot": 61743,
|
|
61
|
+
"home-linear": 61744,
|
|
62
|
+
"home-filled": 61745,
|
|
63
|
+
"history": 61746,
|
|
64
|
+
"help-circle": 61747,
|
|
65
|
+
"heating": 61748,
|
|
66
|
+
"gas-heating": 61749,
|
|
67
|
+
"garden": 61750,
|
|
68
|
+
"filter": 61751,
|
|
69
|
+
"file-text": 61752,
|
|
70
|
+
"file-spreadsheet": 61753,
|
|
71
|
+
"file-signature": 61754,
|
|
72
|
+
"file-lock": 61755,
|
|
73
|
+
"file-key": 61756,
|
|
74
|
+
"file-input": 61757,
|
|
75
|
+
"file-check": 61758,
|
|
76
|
+
"face-ios-light": 61759,
|
|
77
|
+
"face-ios-bold": 61760,
|
|
78
|
+
"face-android": 61761,
|
|
79
|
+
"eye-visible": 61762,
|
|
80
|
+
"eye-hidden": 61763,
|
|
81
|
+
"explore-linear": 61764,
|
|
82
|
+
"explore-filled": 61765,
|
|
83
|
+
"electric": 61766,
|
|
84
|
+
"edit": 61767,
|
|
85
|
+
"door-open": 61768,
|
|
86
|
+
"collections": 61769,
|
|
87
|
+
"closet": 61770,
|
|
88
|
+
"circle-off": 61771,
|
|
89
|
+
"chevron-up": 61772,
|
|
90
|
+
"chevron-right": 61773,
|
|
91
|
+
"chevron-left": 61774,
|
|
92
|
+
"chevron-down": 61775,
|
|
93
|
+
"check": 61776,
|
|
94
|
+
"check-circle-2": 61777,
|
|
95
|
+
"check-check": 61778,
|
|
96
|
+
"cancel": 61779,
|
|
97
|
+
"cancel-circle-stroke": 61780,
|
|
98
|
+
"cancel-circle-solid": 61781,
|
|
99
|
+
"calendar": 61782,
|
|
100
|
+
"building": 61783,
|
|
101
|
+
"bell": 61784,
|
|
102
|
+
"bed-double": 61785,
|
|
103
|
+
"bath": 61786,
|
|
104
|
+
"balcony-window": 61787,
|
|
105
|
+
"arrow-up": 61788,
|
|
106
|
+
"arrow-up-right": 61789,
|
|
107
|
+
"arrow-up-left": 61790,
|
|
108
|
+
"arrow-up-down": 61791,
|
|
109
|
+
"arrow-right": 61792,
|
|
110
|
+
"arrow-left": 61793,
|
|
111
|
+
"arrow-down": 61794,
|
|
112
|
+
"arrow-down-right": 61795,
|
|
113
|
+
"arrow-down-left": 61796,
|
|
114
|
+
"archive": 61797,
|
|
115
|
+
"alert-triangle": 61798,
|
|
116
|
+
"air-conditioner": 61799,
|
|
117
|
+
"add-note": 61800,
|
|
118
|
+
"accessibility": 61801
|
|
118
119
|
};
|
|
119
120
|
|
|
120
121
|
/**
|
package/src/react/Icon.tsx
CHANGED
|
@@ -101,6 +101,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
101
101
|
// Icon: size3d
|
|
102
102
|
// Icon: status-dot
|
|
103
103
|
// Icon: swimming-pool
|
|
104
|
+
// Icon: tasks
|
|
104
105
|
// Icon: terrace
|
|
105
106
|
// Icon: thermometer-snowflake
|
|
106
107
|
// Icon: time
|
|
@@ -113,7 +114,7 @@ import type { ReactIconProps } from '../shared/types';
|
|
|
113
114
|
/**
|
|
114
115
|
* Available icon names
|
|
115
116
|
*/
|
|
116
|
-
export type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-off' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-android' | 'face-ios-bold' | 'face-ios-light' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'history' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'status-dot' | 'swimming-pool' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
|
|
117
|
+
export type IconName = 'accessibility' | 'add-note' | 'air-conditioner' | 'alert-triangle' | 'archive' | 'arrow-down' | 'arrow-down-left' | 'arrow-down-right' | 'arrow-left' | 'arrow-right' | 'arrow-up' | 'arrow-up-down' | 'arrow-up-left' | 'arrow-up-right' | 'balcony-window' | 'bath' | 'bed-double' | 'bell' | 'building' | 'calendar' | 'cancel' | 'cancel-circle-solid' | 'cancel-circle-stroke' | 'check' | 'check-check' | 'check-circle2' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'circle-off' | 'closet' | 'collections' | 'door-open' | 'edit' | 'electric' | 'explore-filled' | 'explore-linear' | 'eye-hidden' | 'eye-visible' | 'face-android' | 'face-ios-bold' | 'face-ios-light' | 'file-check' | 'file-input' | 'file-key' | 'file-lock' | 'file-signature' | 'file-spreadsheet' | 'file-text' | 'filter' | 'garden' | 'gas-heating' | 'heating' | 'help-circle' | 'history' | 'home-filled' | 'home-linear' | 'icon-slot' | 'image' | 'image-off' | 'info' | 'keys01' | 'leads-filled' | 'leads-linear' | 'lift' | 'lock' | 'logout' | 'magic-wand' | 'mail' | 'map-pin' | 'more-horizontal' | 'mortgage' | 'note' | 'notes' | 'outside' | 'parking' | 'patio' | 'payments' | 'pencil-line' | 'pet' | 'phone-linear' | 'pin-map-solid' | 'plus' | 'promotion' | 'properties-filled' | 'properties-linear' | 'rent' | 'restaurant' | 'sale' | 'search' | 'search-x' | 'share' | 'size3d' | 'status-dot' | 'swimming-pool' | 'tasks' | 'terrace' | 'thermometer-snowflake' | 'time' | 'touch-android' | 'touch-ios' | 'trash2' | 'user' | 'whatsapp';
|
|
117
118
|
|
|
118
119
|
/**
|
|
119
120
|
* Props for the unified Icon component
|
|
@@ -325,6 +326,8 @@ function loadIcon(name: IconName): Promise<React.ComponentType<any>> {
|
|
|
325
326
|
return import('./StatusDot').then(m => m.default);
|
|
326
327
|
case 'swimming-pool':
|
|
327
328
|
return import('./SwimmingPool').then(m => m.default);
|
|
329
|
+
case 'tasks':
|
|
330
|
+
return import('./Tasks').then(m => m.default);
|
|
328
331
|
case 'terrace':
|
|
329
332
|
return import('./Terrace').then(m => m.default);
|
|
330
333
|
case 'thermometer-snowflake':
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ReactIconProps } from '../shared/types';
|
|
3
|
+
import { resolveSize } from '../shared/types';
|
|
4
|
+
|
|
5
|
+
const SvgTasks = ({ 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="M9.70711 9.29289C10.0976 9.68342 10.0976 10.3166 9.70711 10.7071L5.70711 14.7071C5.31658 15.0976 4.68342 15.0976 4.29289 14.7071L2.29289 12.7071C1.90237 12.3166 1.90237 11.6834 2.29289 11.2929C2.68342 10.9024 3.31658 10.9024 3.70711 11.2929L5 12.5858L8.29289 9.29289C8.68342 8.90237 9.31658 8.90237 9.70711 9.29289Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
fillRule="evenodd"
|
|
24
|
+
clipRule="evenodd"
|
|
25
|
+
d="M12 5C12 4.44772 12.4477 4 13 4H21C21.5523 4 22 4.44772 22 5C22 5.55228 21.5523 6 21 6H13C12.4477 6 12 5.55228 12 5Z"
|
|
26
|
+
fill="currentColor"
|
|
27
|
+
/>
|
|
28
|
+
<path
|
|
29
|
+
fillRule="evenodd"
|
|
30
|
+
clipRule="evenodd"
|
|
31
|
+
d="M3.5 5C3.5 4.44772 3.94772 4 4.5 4H5.5C6.05229 4 6.5 4.44772 6.5 5C6.5 5.55228 6.05229 6 5.5 6H4.5C3.94772 6 3.5 5.55228 3.5 5Z"
|
|
32
|
+
fill="currentColor"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
fillRule="evenodd"
|
|
36
|
+
clipRule="evenodd"
|
|
37
|
+
d="M3.5 19C3.5 18.4477 3.94772 18 4.5 18H5.5C6.05229 18 6.5 18.4477 6.5 19C6.5 19.5523 6.05229 20 5.5 20H4.5C3.94772 20 3.5 19.5523 3.5 19Z"
|
|
38
|
+
fill="currentColor"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
fillRule="evenodd"
|
|
42
|
+
clipRule="evenodd"
|
|
43
|
+
d="M12 12C12 11.4477 12.4477 11 13 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H13C12.4477 13 12 12.5523 12 12Z"
|
|
44
|
+
fill="currentColor"
|
|
45
|
+
/>
|
|
46
|
+
<path
|
|
47
|
+
fillRule="evenodd"
|
|
48
|
+
clipRule="evenodd"
|
|
49
|
+
d="M12 19C12 18.4477 12.4477 18 13 18H21C21.5523 18 22 18.4477 22 19C22 19.5523 21.5523 20 21 20H13C12.4477 20 12 19.5523 12 19Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
export default SvgTasks;
|
package/src/react/index.ts
CHANGED
|
@@ -95,6 +95,7 @@ export { default as Share } from './Share';
|
|
|
95
95
|
export { default as Size3D } from './Size3D';
|
|
96
96
|
export { default as StatusDot } from './StatusDot';
|
|
97
97
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
98
|
+
export { default as Tasks } from './Tasks';
|
|
98
99
|
export { default as Terrace } from './Terrace';
|
|
99
100
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
100
101
|
export { default as Time } from './Time';
|
package/src/react/index.tsx
CHANGED
|
@@ -94,6 +94,7 @@ export { default as Share } from './Share';
|
|
|
94
94
|
export { default as Size3D } from './Size3D';
|
|
95
95
|
export { default as StatusDot } from './StatusDot';
|
|
96
96
|
export { default as SwimmingPool } from './SwimmingPool';
|
|
97
|
+
export { default as Tasks } from './Tasks';
|
|
97
98
|
export { default as Terrace } from './Terrace';
|
|
98
99
|
export { default as ThermometerSnowflake } from './ThermometerSnowflake';
|
|
99
100
|
export { default as Time } from './Time';
|