@ashmit72/mage-icons-react 0.1.1 → 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/dist/index.d.mts +226 -22
- package/dist/index.d.ts +226 -22
- package/dist/index.js +831 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +792 -31
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -3
package/dist/index.d.mts
CHANGED
|
@@ -3,53 +3,257 @@ import { SVGProps } from 'react';
|
|
|
3
3
|
|
|
4
4
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
5
|
size?: string | number;
|
|
6
|
-
strokeWidth?: string | number;
|
|
7
6
|
color?: string;
|
|
7
|
+
strokeWidth?: string | number;
|
|
8
8
|
}
|
|
9
9
|
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @
|
|
12
|
+
* arrow-big-up icon in filled style
|
|
13
|
+
* @type stroke
|
|
14
|
+
*/
|
|
15
|
+
declare const ArrowBigUpFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* arrow-big-up icon in stroke style
|
|
19
|
+
* @type stroke
|
|
20
|
+
*/
|
|
21
|
+
declare const ArrowBigUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* arrow-big-up1 icon in filled style
|
|
25
|
+
* @type stroke
|
|
26
|
+
*/
|
|
27
|
+
declare const ArrowBigUp1Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* arrow-big-up1 icon in stroke style
|
|
31
|
+
* @type stroke
|
|
32
|
+
*/
|
|
33
|
+
declare const ArrowBigUp1: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* arrow-left icon in filled style
|
|
37
|
+
* @type stroke
|
|
38
|
+
*/
|
|
39
|
+
declare const ArrowLeftFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* arrow-left icon in stroke style
|
|
43
|
+
* @type stroke
|
|
44
|
+
*/
|
|
45
|
+
declare const ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* arrow-left1 icon in filled style
|
|
49
|
+
* @type stroke
|
|
50
|
+
*/
|
|
51
|
+
declare const ArrowLeft1Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* arrow-left1 icon in stroke style
|
|
55
|
+
* @type stroke
|
|
56
|
+
*/
|
|
57
|
+
declare const ArrowLeft1: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* arrow-left2 icon in filled style
|
|
61
|
+
* @type stroke
|
|
62
|
+
*/
|
|
63
|
+
declare const ArrowLeft2Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* arrow-left2 icon in stroke style
|
|
67
|
+
* @type stroke
|
|
68
|
+
*/
|
|
69
|
+
declare const ArrowLeft2: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* arrow-left3 icon in filled style
|
|
73
|
+
* @type stroke
|
|
74
|
+
*/
|
|
75
|
+
declare const ArrowLeft3Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* arrow-left3 icon in stroke style
|
|
79
|
+
* @type stroke
|
|
80
|
+
*/
|
|
81
|
+
declare const ArrowLeft3: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* arrow-left4 icon in filled style
|
|
85
|
+
* @type stroke
|
|
86
|
+
*/
|
|
87
|
+
declare const ArrowLeft4Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* arrow-left4 icon in stroke style
|
|
91
|
+
* @type stroke
|
|
92
|
+
*/
|
|
93
|
+
declare const ArrowLeft4: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* arrow-left5 icon in filled style
|
|
97
|
+
* @type stroke
|
|
98
|
+
*/
|
|
99
|
+
declare const ArrowLeft5Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* arrow-left5 icon in stroke style
|
|
103
|
+
* @type stroke
|
|
104
|
+
*/
|
|
105
|
+
declare const ArrowLeft5: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* arrow-left6 icon in filled style
|
|
109
|
+
* @type stroke
|
|
110
|
+
*/
|
|
111
|
+
declare const ArrowLeft6Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* arrow-left6 icon in stroke style
|
|
115
|
+
* @type stroke
|
|
116
|
+
*/
|
|
117
|
+
declare const ArrowLeft6: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* ashmit icon in filled style
|
|
121
|
+
* @type stroke
|
|
122
|
+
*/
|
|
123
|
+
declare const AshmitFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* ashmit icon in stroke style
|
|
127
|
+
* @type stroke
|
|
128
|
+
*/
|
|
129
|
+
declare const Ashmit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* automobile icon in filled style
|
|
133
|
+
* @type stroke
|
|
134
|
+
*/
|
|
135
|
+
declare const AutomobileFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* automobile icon in stroke style
|
|
139
|
+
* @type stroke
|
|
140
|
+
*/
|
|
141
|
+
declare const Automobile: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* axe icon in filled style
|
|
145
|
+
* @type stroke
|
|
146
|
+
*/
|
|
147
|
+
declare const AxeFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* axe icon in stroke style
|
|
151
|
+
* @type stroke
|
|
152
|
+
*/
|
|
153
|
+
declare const Axe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* car icon in filled style
|
|
157
|
+
* @type stroke
|
|
158
|
+
*/
|
|
159
|
+
declare const CarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* car icon in stroke style
|
|
163
|
+
* @type stroke
|
|
164
|
+
*/
|
|
165
|
+
declare const Car: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* check icon in filled style
|
|
169
|
+
* @type stroke
|
|
170
|
+
*/
|
|
171
|
+
declare const CheckFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* check icon in stroke style
|
|
175
|
+
* @type stroke
|
|
176
|
+
*/
|
|
177
|
+
declare const Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* film icon in filled style
|
|
181
|
+
* @type stroke
|
|
182
|
+
*/
|
|
183
|
+
declare const FilmFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* film icon in stroke style
|
|
187
|
+
* @type stroke
|
|
188
|
+
*/
|
|
189
|
+
declare const Film: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* final icon in filled style
|
|
193
|
+
* @type stroke
|
|
194
|
+
*/
|
|
195
|
+
declare const FinalFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* final icon in stroke style
|
|
199
|
+
* @type stroke
|
|
14
200
|
*/
|
|
15
|
-
declare const
|
|
201
|
+
declare const Final: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
202
|
|
|
17
203
|
/**
|
|
18
|
-
*
|
|
19
|
-
* @
|
|
204
|
+
* me icon in filled style
|
|
205
|
+
* @type stroke
|
|
20
206
|
*/
|
|
21
|
-
declare const
|
|
207
|
+
declare const MeFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
208
|
|
|
23
209
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @
|
|
210
|
+
* me icon in stroke style
|
|
211
|
+
* @type stroke
|
|
26
212
|
*/
|
|
27
|
-
declare const
|
|
213
|
+
declare const Me: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
214
|
|
|
29
215
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @
|
|
216
|
+
* test icon in filled style
|
|
217
|
+
* @type stroke
|
|
32
218
|
*/
|
|
33
|
-
declare const
|
|
219
|
+
declare const TestFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
220
|
|
|
35
221
|
/**
|
|
36
222
|
* test icon in stroke style
|
|
37
|
-
* @
|
|
223
|
+
* @type stroke
|
|
38
224
|
*/
|
|
39
225
|
declare const Test: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
226
|
|
|
41
227
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @
|
|
228
|
+
* vehicle icon in filled style
|
|
229
|
+
* @type stroke
|
|
230
|
+
*/
|
|
231
|
+
declare const VehicleFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* vehicle icon in stroke style
|
|
235
|
+
* @type stroke
|
|
236
|
+
*/
|
|
237
|
+
declare const Vehicle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* verified icon
|
|
241
|
+
* @type stroke
|
|
242
|
+
*/
|
|
243
|
+
declare const Verified: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* x icon in filled style
|
|
247
|
+
* @type stroke
|
|
44
248
|
*/
|
|
45
|
-
declare const
|
|
249
|
+
declare const XFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
250
|
|
|
47
251
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @
|
|
252
|
+
* x icon in stroke style
|
|
253
|
+
* @type stroke
|
|
50
254
|
*/
|
|
51
|
-
declare const
|
|
255
|
+
declare const X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
256
|
|
|
53
|
-
type IconName = '
|
|
257
|
+
type IconName = 'ArrowBigUpFilled' | 'ArrowBigUp' | 'ArrowBigUp1Filled' | 'ArrowBigUp1' | 'ArrowLeftFilled' | 'ArrowLeft' | 'ArrowLeft1Filled' | 'ArrowLeft1' | 'ArrowLeft2Filled' | 'ArrowLeft2' | 'ArrowLeft3Filled' | 'ArrowLeft3' | 'ArrowLeft4Filled' | 'ArrowLeft4' | 'ArrowLeft5Filled' | 'ArrowLeft5' | 'ArrowLeft6Filled' | 'ArrowLeft6' | 'AshmitFilled' | 'Ashmit' | 'AutomobileFilled' | 'Automobile' | 'AxeFilled' | 'Axe' | 'CarFilled' | 'Car' | 'CheckFilled' | 'Check' | 'FilmFilled' | 'Film' | 'FinalFilled' | 'Final' | 'MeFilled' | 'Me' | 'TestFilled' | 'Test' | 'VehicleFilled' | 'Vehicle' | 'Verified' | 'XFilled' | 'X';
|
|
54
258
|
|
|
55
|
-
export {
|
|
259
|
+
export { ArrowBigUp, ArrowBigUp1, ArrowBigUp1Filled, ArrowBigUpFilled, ArrowLeft, ArrowLeft1, ArrowLeft1Filled, ArrowLeft2, ArrowLeft2Filled, ArrowLeft3, ArrowLeft3Filled, ArrowLeft4, ArrowLeft4Filled, ArrowLeft5, ArrowLeft5Filled, ArrowLeft6, ArrowLeft6Filled, ArrowLeftFilled, Ashmit, AshmitFilled, Automobile, AutomobileFilled, Axe, AxeFilled, Car, CarFilled, Check, CheckFilled, Film, FilmFilled, Final, FinalFilled, Icon, type IconName, type IconProps, Me, MeFilled, Test, TestFilled, Vehicle, VehicleFilled, Verified, X, XFilled };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,53 +3,257 @@ import { SVGProps } from 'react';
|
|
|
3
3
|
|
|
4
4
|
interface IconProps extends Omit<SVGProps<SVGSVGElement>, 'ref'> {
|
|
5
5
|
size?: string | number;
|
|
6
|
-
strokeWidth?: string | number;
|
|
7
6
|
color?: string;
|
|
7
|
+
strokeWidth?: string | number;
|
|
8
8
|
}
|
|
9
9
|
declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
13
|
-
* @
|
|
12
|
+
* arrow-big-up icon in filled style
|
|
13
|
+
* @type stroke
|
|
14
|
+
*/
|
|
15
|
+
declare const ArrowBigUpFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* arrow-big-up icon in stroke style
|
|
19
|
+
* @type stroke
|
|
20
|
+
*/
|
|
21
|
+
declare const ArrowBigUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* arrow-big-up1 icon in filled style
|
|
25
|
+
* @type stroke
|
|
26
|
+
*/
|
|
27
|
+
declare const ArrowBigUp1Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* arrow-big-up1 icon in stroke style
|
|
31
|
+
* @type stroke
|
|
32
|
+
*/
|
|
33
|
+
declare const ArrowBigUp1: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* arrow-left icon in filled style
|
|
37
|
+
* @type stroke
|
|
38
|
+
*/
|
|
39
|
+
declare const ArrowLeftFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* arrow-left icon in stroke style
|
|
43
|
+
* @type stroke
|
|
44
|
+
*/
|
|
45
|
+
declare const ArrowLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* arrow-left1 icon in filled style
|
|
49
|
+
* @type stroke
|
|
50
|
+
*/
|
|
51
|
+
declare const ArrowLeft1Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* arrow-left1 icon in stroke style
|
|
55
|
+
* @type stroke
|
|
56
|
+
*/
|
|
57
|
+
declare const ArrowLeft1: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* arrow-left2 icon in filled style
|
|
61
|
+
* @type stroke
|
|
62
|
+
*/
|
|
63
|
+
declare const ArrowLeft2Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* arrow-left2 icon in stroke style
|
|
67
|
+
* @type stroke
|
|
68
|
+
*/
|
|
69
|
+
declare const ArrowLeft2: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* arrow-left3 icon in filled style
|
|
73
|
+
* @type stroke
|
|
74
|
+
*/
|
|
75
|
+
declare const ArrowLeft3Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* arrow-left3 icon in stroke style
|
|
79
|
+
* @type stroke
|
|
80
|
+
*/
|
|
81
|
+
declare const ArrowLeft3: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* arrow-left4 icon in filled style
|
|
85
|
+
* @type stroke
|
|
86
|
+
*/
|
|
87
|
+
declare const ArrowLeft4Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* arrow-left4 icon in stroke style
|
|
91
|
+
* @type stroke
|
|
92
|
+
*/
|
|
93
|
+
declare const ArrowLeft4: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* arrow-left5 icon in filled style
|
|
97
|
+
* @type stroke
|
|
98
|
+
*/
|
|
99
|
+
declare const ArrowLeft5Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* arrow-left5 icon in stroke style
|
|
103
|
+
* @type stroke
|
|
104
|
+
*/
|
|
105
|
+
declare const ArrowLeft5: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* arrow-left6 icon in filled style
|
|
109
|
+
* @type stroke
|
|
110
|
+
*/
|
|
111
|
+
declare const ArrowLeft6Filled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* arrow-left6 icon in stroke style
|
|
115
|
+
* @type stroke
|
|
116
|
+
*/
|
|
117
|
+
declare const ArrowLeft6: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* ashmit icon in filled style
|
|
121
|
+
* @type stroke
|
|
122
|
+
*/
|
|
123
|
+
declare const AshmitFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* ashmit icon in stroke style
|
|
127
|
+
* @type stroke
|
|
128
|
+
*/
|
|
129
|
+
declare const Ashmit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* automobile icon in filled style
|
|
133
|
+
* @type stroke
|
|
134
|
+
*/
|
|
135
|
+
declare const AutomobileFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* automobile icon in stroke style
|
|
139
|
+
* @type stroke
|
|
140
|
+
*/
|
|
141
|
+
declare const Automobile: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* axe icon in filled style
|
|
145
|
+
* @type stroke
|
|
146
|
+
*/
|
|
147
|
+
declare const AxeFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* axe icon in stroke style
|
|
151
|
+
* @type stroke
|
|
152
|
+
*/
|
|
153
|
+
declare const Axe: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* car icon in filled style
|
|
157
|
+
* @type stroke
|
|
158
|
+
*/
|
|
159
|
+
declare const CarFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* car icon in stroke style
|
|
163
|
+
* @type stroke
|
|
164
|
+
*/
|
|
165
|
+
declare const Car: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* check icon in filled style
|
|
169
|
+
* @type stroke
|
|
170
|
+
*/
|
|
171
|
+
declare const CheckFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* check icon in stroke style
|
|
175
|
+
* @type stroke
|
|
176
|
+
*/
|
|
177
|
+
declare const Check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* film icon in filled style
|
|
181
|
+
* @type stroke
|
|
182
|
+
*/
|
|
183
|
+
declare const FilmFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* film icon in stroke style
|
|
187
|
+
* @type stroke
|
|
188
|
+
*/
|
|
189
|
+
declare const Film: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* final icon in filled style
|
|
193
|
+
* @type stroke
|
|
194
|
+
*/
|
|
195
|
+
declare const FinalFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* final icon in stroke style
|
|
199
|
+
* @type stroke
|
|
14
200
|
*/
|
|
15
|
-
declare const
|
|
201
|
+
declare const Final: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
16
202
|
|
|
17
203
|
/**
|
|
18
|
-
*
|
|
19
|
-
* @
|
|
204
|
+
* me icon in filled style
|
|
205
|
+
* @type stroke
|
|
20
206
|
*/
|
|
21
|
-
declare const
|
|
207
|
+
declare const MeFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
22
208
|
|
|
23
209
|
/**
|
|
24
|
-
*
|
|
25
|
-
* @
|
|
210
|
+
* me icon in stroke style
|
|
211
|
+
* @type stroke
|
|
26
212
|
*/
|
|
27
|
-
declare const
|
|
213
|
+
declare const Me: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
28
214
|
|
|
29
215
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @
|
|
216
|
+
* test icon in filled style
|
|
217
|
+
* @type stroke
|
|
32
218
|
*/
|
|
33
|
-
declare const
|
|
219
|
+
declare const TestFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
34
220
|
|
|
35
221
|
/**
|
|
36
222
|
* test icon in stroke style
|
|
37
|
-
* @
|
|
223
|
+
* @type stroke
|
|
38
224
|
*/
|
|
39
225
|
declare const Test: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
40
226
|
|
|
41
227
|
/**
|
|
42
|
-
*
|
|
43
|
-
* @
|
|
228
|
+
* vehicle icon in filled style
|
|
229
|
+
* @type stroke
|
|
230
|
+
*/
|
|
231
|
+
declare const VehicleFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* vehicle icon in stroke style
|
|
235
|
+
* @type stroke
|
|
236
|
+
*/
|
|
237
|
+
declare const Vehicle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* verified icon
|
|
241
|
+
* @type stroke
|
|
242
|
+
*/
|
|
243
|
+
declare const Verified: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* x icon in filled style
|
|
247
|
+
* @type stroke
|
|
44
248
|
*/
|
|
45
|
-
declare const
|
|
249
|
+
declare const XFilled: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
46
250
|
|
|
47
251
|
/**
|
|
48
|
-
*
|
|
49
|
-
* @
|
|
252
|
+
* x icon in stroke style
|
|
253
|
+
* @type stroke
|
|
50
254
|
*/
|
|
51
|
-
declare const
|
|
255
|
+
declare const X: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
|
|
52
256
|
|
|
53
|
-
type IconName = '
|
|
257
|
+
type IconName = 'ArrowBigUpFilled' | 'ArrowBigUp' | 'ArrowBigUp1Filled' | 'ArrowBigUp1' | 'ArrowLeftFilled' | 'ArrowLeft' | 'ArrowLeft1Filled' | 'ArrowLeft1' | 'ArrowLeft2Filled' | 'ArrowLeft2' | 'ArrowLeft3Filled' | 'ArrowLeft3' | 'ArrowLeft4Filled' | 'ArrowLeft4' | 'ArrowLeft5Filled' | 'ArrowLeft5' | 'ArrowLeft6Filled' | 'ArrowLeft6' | 'AshmitFilled' | 'Ashmit' | 'AutomobileFilled' | 'Automobile' | 'AxeFilled' | 'Axe' | 'CarFilled' | 'Car' | 'CheckFilled' | 'Check' | 'FilmFilled' | 'Film' | 'FinalFilled' | 'Final' | 'MeFilled' | 'Me' | 'TestFilled' | 'Test' | 'VehicleFilled' | 'Vehicle' | 'Verified' | 'XFilled' | 'X';
|
|
54
258
|
|
|
55
|
-
export {
|
|
259
|
+
export { ArrowBigUp, ArrowBigUp1, ArrowBigUp1Filled, ArrowBigUpFilled, ArrowLeft, ArrowLeft1, ArrowLeft1Filled, ArrowLeft2, ArrowLeft2Filled, ArrowLeft3, ArrowLeft3Filled, ArrowLeft4, ArrowLeft4Filled, ArrowLeft5, ArrowLeft5Filled, ArrowLeft6, ArrowLeft6Filled, ArrowLeftFilled, Ashmit, AshmitFilled, Automobile, AutomobileFilled, Axe, AxeFilled, Car, CarFilled, Check, CheckFilled, Film, FilmFilled, Final, FinalFilled, Icon, type IconName, type IconProps, Me, MeFilled, Test, TestFilled, Vehicle, VehicleFilled, Verified, X, XFilled };
|