@david-richard/notify-ds 1.0.3 → 1.1.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/assets/icons/alert-circle.svg +5 -0
- package/assets/icons/alert-triangle.svg +5 -0
- package/assets/icons/arrow-down-2.svg +4 -0
- package/assets/icons/arrow-down.svg +3 -0
- package/assets/icons/arrow-left.svg +3 -0
- package/assets/icons/arrow-right.svg +3 -0
- package/assets/icons/arrow-up-2.svg +4 -0
- package/assets/icons/arrow-up.svg +3 -3
- package/assets/icons/bell.svg +4 -3
- package/assets/icons/calendar.svg +6 -3
- package/assets/icons/check-badge.svg +4 -0
- package/assets/icons/check-circle.svg +4 -0
- package/assets/icons/check.svg +3 -0
- package/assets/icons/chevron-down.svg +3 -0
- package/assets/icons/chevron-left.svg +3 -3
- package/assets/icons/chevron-right.svg +3 -0
- package/assets/icons/chevron-up.svg +3 -0
- package/assets/icons/clock.svg +4 -0
- package/assets/icons/close.svg +4 -0
- package/assets/icons/dashboard.svg +6 -3
- package/assets/icons/download.svg +5 -0
- package/assets/icons/extend.svg +5 -0
- package/assets/icons/face-id.svg +9 -0
- package/assets/icons/filter.svg +3 -3
- package/assets/icons/help-circle.svg +5 -0
- package/assets/icons/hide.svg +6 -0
- package/assets/icons/info.svg +5 -0
- package/assets/icons/local.svg +4 -0
- package/assets/icons/lock.svg +5 -0
- package/assets/icons/menu.svg +5 -0
- package/assets/icons/minus.svg +3 -0
- package/assets/icons/more-horizontal.svg +5 -0
- package/assets/icons/more-vertical.svg +5 -0
- package/assets/icons/open-lock.svg +5 -0
- package/assets/icons/package.svg +6 -0
- package/assets/icons/plus.svg +4 -0
- package/assets/icons/refresh.svg +6 -0
- package/assets/icons/search.svg +4 -3
- package/assets/icons/sliders.svg +11 -0
- package/assets/icons/store.svg +5 -3
- package/assets/icons/trending-down.svg +11 -3
- package/assets/icons/trending-up.svg +11 -3
- package/assets/icons/upload.svg +5 -0
- package/assets/icons/user.svg +4 -0
- package/assets/icons/view.svg +4 -0
- package/assets/icons/x-circle.svg +5 -0
- package/dist/icons/index.d.mts +244 -0
- package/dist/icons/index.d.ts +244 -0
- package/dist/icons/index.js +455 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/icons/index.mjs +407 -0
- package/dist/icons/index.mjs.map +1 -0
- package/dist/index.d.mts +10 -5
- package/dist/index.d.ts +10 -5
- package/dist/index.js +25 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -1
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
type IconProps = Omit<React.SVGAttributes<SVGSVGElement>, 'width' | 'height'> & {
|
|
5
|
+
/** Renders the icon at size × size px (default: 24). */
|
|
6
|
+
size?: number | string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
declare function AlertCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
declare namespace AlertCircle {
|
|
11
|
+
var displayName: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare function AlertTriangle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
15
|
+
declare namespace AlertTriangle {
|
|
16
|
+
var displayName: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
declare function ArrowDown2({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
declare namespace ArrowDown2 {
|
|
21
|
+
var displayName: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare function ArrowDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
declare namespace ArrowDown {
|
|
26
|
+
var displayName: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare function ArrowLeft({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
30
|
+
declare namespace ArrowLeft {
|
|
31
|
+
var displayName: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
declare function ArrowRight({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
declare namespace ArrowRight {
|
|
36
|
+
var displayName: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare function ArrowUp2({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare namespace ArrowUp2 {
|
|
41
|
+
var displayName: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
declare function ArrowUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare namespace ArrowUp {
|
|
46
|
+
var displayName: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare function BellDot({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
50
|
+
declare namespace BellDot {
|
|
51
|
+
var displayName: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare function Bell({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare namespace Bell {
|
|
56
|
+
var displayName: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare function Calendar({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
declare namespace Calendar {
|
|
61
|
+
var displayName: string;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
declare function CheckBadge({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
declare namespace CheckBadge {
|
|
66
|
+
var displayName: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
declare function CheckCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare namespace CheckCircle {
|
|
71
|
+
var displayName: string;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare function Check({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
75
|
+
declare namespace Check {
|
|
76
|
+
var displayName: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
declare function ChevronDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare namespace ChevronDown {
|
|
81
|
+
var displayName: string;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare function ChevronLeft({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare namespace ChevronLeft {
|
|
86
|
+
var displayName: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
declare function ChevronRight({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare namespace ChevronRight {
|
|
91
|
+
var displayName: string;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
declare function ChevronUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare namespace ChevronUp {
|
|
96
|
+
var displayName: string;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
declare function Clock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
declare namespace Clock {
|
|
101
|
+
var displayName: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare function Close({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare namespace Close {
|
|
106
|
+
var displayName: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
declare function Dashboard({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare namespace Dashboard {
|
|
111
|
+
var displayName: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
declare function Download({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
115
|
+
declare namespace Download {
|
|
116
|
+
var displayName: string;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare function Extend({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
declare namespace Extend {
|
|
121
|
+
var displayName: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
declare function FaceId({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
125
|
+
declare namespace FaceId {
|
|
126
|
+
var displayName: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare function Filter({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare namespace Filter {
|
|
131
|
+
var displayName: string;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
declare function HelpCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare namespace HelpCircle {
|
|
136
|
+
var displayName: string;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare function Hide({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
declare namespace Hide {
|
|
141
|
+
var displayName: string;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
declare function Info({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
145
|
+
declare namespace Info {
|
|
146
|
+
var displayName: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
declare function Local({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
150
|
+
declare namespace Local {
|
|
151
|
+
var displayName: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
declare function Lock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
155
|
+
declare namespace Lock {
|
|
156
|
+
var displayName: string;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
declare function Menu({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
160
|
+
declare namespace Menu {
|
|
161
|
+
var displayName: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
declare function Minus({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
165
|
+
declare namespace Minus {
|
|
166
|
+
var displayName: string;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
declare function MoreHorizontal({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare namespace MoreHorizontal {
|
|
171
|
+
var displayName: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
declare function MoreVertical({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
175
|
+
declare namespace MoreVertical {
|
|
176
|
+
var displayName: string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare function OpenLock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
180
|
+
declare namespace OpenLock {
|
|
181
|
+
var displayName: string;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
declare function Package({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
185
|
+
declare namespace Package {
|
|
186
|
+
var displayName: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare function Plus({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
190
|
+
declare namespace Plus {
|
|
191
|
+
var displayName: string;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
declare function Refresh({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare namespace Refresh {
|
|
196
|
+
var displayName: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare function Search({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
200
|
+
declare namespace Search {
|
|
201
|
+
var displayName: string;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
declare function Sliders({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
205
|
+
declare namespace Sliders {
|
|
206
|
+
var displayName: string;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare function Store({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
210
|
+
declare namespace Store {
|
|
211
|
+
var displayName: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
declare function TrendingDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
215
|
+
declare namespace TrendingDown {
|
|
216
|
+
var displayName: string;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
declare function TrendingUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
220
|
+
declare namespace TrendingUp {
|
|
221
|
+
var displayName: string;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
declare function Upload({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
225
|
+
declare namespace Upload {
|
|
226
|
+
var displayName: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare function User({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
230
|
+
declare namespace User {
|
|
231
|
+
var displayName: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
declare function View({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
235
|
+
declare namespace View {
|
|
236
|
+
var displayName: string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
declare function XCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
240
|
+
declare namespace XCircle {
|
|
241
|
+
var displayName: string;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export { AlertCircle, AlertTriangle, ArrowDown, ArrowDown2, ArrowLeft, ArrowRight, ArrowUp, ArrowUp2, Bell, BellDot, Calendar, Check, CheckBadge, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, Close, Dashboard, Download, Extend, FaceId, Filter, HelpCircle, Hide, type IconProps, Info, Local, Lock, Menu, Minus, MoreHorizontal, MoreVertical, OpenLock, Package, Plus, Refresh, Search, Sliders, Store, TrendingDown, TrendingUp, Upload, User, View, XCircle };
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
type IconProps = Omit<React.SVGAttributes<SVGSVGElement>, 'width' | 'height'> & {
|
|
5
|
+
/** Renders the icon at size × size px (default: 24). */
|
|
6
|
+
size?: number | string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
declare function AlertCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
10
|
+
declare namespace AlertCircle {
|
|
11
|
+
var displayName: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
declare function AlertTriangle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
15
|
+
declare namespace AlertTriangle {
|
|
16
|
+
var displayName: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
declare function ArrowDown2({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
20
|
+
declare namespace ArrowDown2 {
|
|
21
|
+
var displayName: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare function ArrowDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
declare namespace ArrowDown {
|
|
26
|
+
var displayName: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
declare function ArrowLeft({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
30
|
+
declare namespace ArrowLeft {
|
|
31
|
+
var displayName: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
declare function ArrowRight({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
35
|
+
declare namespace ArrowRight {
|
|
36
|
+
var displayName: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare function ArrowUp2({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare namespace ArrowUp2 {
|
|
41
|
+
var displayName: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
declare function ArrowUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare namespace ArrowUp {
|
|
46
|
+
var displayName: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
declare function BellDot({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
50
|
+
declare namespace BellDot {
|
|
51
|
+
var displayName: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare function Bell({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare namespace Bell {
|
|
56
|
+
var displayName: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare function Calendar({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
60
|
+
declare namespace Calendar {
|
|
61
|
+
var displayName: string;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
declare function CheckBadge({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
declare namespace CheckBadge {
|
|
66
|
+
var displayName: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
declare function CheckCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
70
|
+
declare namespace CheckCircle {
|
|
71
|
+
var displayName: string;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare function Check({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
75
|
+
declare namespace Check {
|
|
76
|
+
var displayName: string;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
declare function ChevronDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare namespace ChevronDown {
|
|
81
|
+
var displayName: string;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
declare function ChevronLeft({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
85
|
+
declare namespace ChevronLeft {
|
|
86
|
+
var displayName: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
declare function ChevronRight({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
90
|
+
declare namespace ChevronRight {
|
|
91
|
+
var displayName: string;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
declare function ChevronUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare namespace ChevronUp {
|
|
96
|
+
var displayName: string;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
declare function Clock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
declare namespace Clock {
|
|
101
|
+
var displayName: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare function Close({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
105
|
+
declare namespace Close {
|
|
106
|
+
var displayName: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
declare function Dashboard({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare namespace Dashboard {
|
|
111
|
+
var displayName: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
declare function Download({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
115
|
+
declare namespace Download {
|
|
116
|
+
var displayName: string;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare function Extend({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
120
|
+
declare namespace Extend {
|
|
121
|
+
var displayName: string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
declare function FaceId({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
125
|
+
declare namespace FaceId {
|
|
126
|
+
var displayName: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare function Filter({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
130
|
+
declare namespace Filter {
|
|
131
|
+
var displayName: string;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
declare function HelpCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare namespace HelpCircle {
|
|
136
|
+
var displayName: string;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
declare function Hide({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
declare namespace Hide {
|
|
141
|
+
var displayName: string;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
declare function Info({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
145
|
+
declare namespace Info {
|
|
146
|
+
var displayName: string;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
declare function Local({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
150
|
+
declare namespace Local {
|
|
151
|
+
var displayName: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
declare function Lock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
155
|
+
declare namespace Lock {
|
|
156
|
+
var displayName: string;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
declare function Menu({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
160
|
+
declare namespace Menu {
|
|
161
|
+
var displayName: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
declare function Minus({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
165
|
+
declare namespace Minus {
|
|
166
|
+
var displayName: string;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
declare function MoreHorizontal({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
170
|
+
declare namespace MoreHorizontal {
|
|
171
|
+
var displayName: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
declare function MoreVertical({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
175
|
+
declare namespace MoreVertical {
|
|
176
|
+
var displayName: string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
declare function OpenLock({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
180
|
+
declare namespace OpenLock {
|
|
181
|
+
var displayName: string;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
declare function Package({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
185
|
+
declare namespace Package {
|
|
186
|
+
var displayName: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare function Plus({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
190
|
+
declare namespace Plus {
|
|
191
|
+
var displayName: string;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
declare function Refresh({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare namespace Refresh {
|
|
196
|
+
var displayName: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare function Search({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
200
|
+
declare namespace Search {
|
|
201
|
+
var displayName: string;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
declare function Sliders({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
205
|
+
declare namespace Sliders {
|
|
206
|
+
var displayName: string;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare function Store({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
210
|
+
declare namespace Store {
|
|
211
|
+
var displayName: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
declare function TrendingDown({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
215
|
+
declare namespace TrendingDown {
|
|
216
|
+
var displayName: string;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
declare function TrendingUp({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
220
|
+
declare namespace TrendingUp {
|
|
221
|
+
var displayName: string;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
declare function Upload({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
225
|
+
declare namespace Upload {
|
|
226
|
+
var displayName: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare function User({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
230
|
+
declare namespace User {
|
|
231
|
+
var displayName: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
declare function View({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
235
|
+
declare namespace View {
|
|
236
|
+
var displayName: string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
declare function XCircle({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
240
|
+
declare namespace XCircle {
|
|
241
|
+
var displayName: string;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export { AlertCircle, AlertTriangle, ArrowDown, ArrowDown2, ArrowLeft, ArrowRight, ArrowUp, ArrowUp2, Bell, BellDot, Calendar, Check, CheckBadge, CheckCircle, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, Clock, Close, Dashboard, Download, Extend, FaceId, Filter, HelpCircle, Hide, type IconProps, Info, Local, Lock, Menu, Minus, MoreHorizontal, MoreVertical, OpenLock, Package, Plus, Refresh, Search, Sliders, Store, TrendingDown, TrendingUp, Upload, User, View, XCircle };
|