@proicons/react 4.11.1 → 4.11.3
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 +16 -13
- package/dist/icons/{AddCircularIcon.js → AddCircleIcon.js} +2 -2
- package/dist/icons/{ArrowFowardIcon.js → ArrowForwardIcon.js} +2 -2
- package/dist/icons/{AttatchIcon.js → AttachIcon.js} +2 -2
- package/dist/icons/{MuseumIcon.js → BankIcon.js} +2 -2
- package/dist/icons/BlueskyIcon.js +23 -0
- package/dist/icons/BracesIcon.js +1 -1
- package/dist/icons/CancelOctagonIcon.js +33 -0
- package/dist/icons/ChromeRestoreIcon.js +2 -2
- package/dist/icons/CloudIcon.js +5 -2
- package/dist/icons/CommentAdd2Icon.js +23 -0
- package/dist/icons/CommentAddIcon.js +33 -0
- package/dist/icons/CommentExclamationIcon.js +5 -2
- package/dist/icons/CommentIcon.js +5 -2
- package/dist/icons/CommentMultipleIcon.js +5 -2
- package/dist/icons/Css2Icon.js +34 -0
- package/dist/icons/CssIcon.js +2 -2
- package/dist/icons/DrawTextIcon.js +1 -1
- package/dist/icons/ExtensionIcon.js +5 -2
- package/dist/icons/{FastFowardIcon.js → FastForwardIcon.js} +2 -2
- package/dist/icons/FileMultipleIcon.js +34 -0
- package/dist/icons/FolderMultipleIcon.js +33 -0
- package/dist/icons/HtmlIcon.js +2 -2
- package/dist/icons/LinuxIcon.js +13 -2
- package/dist/icons/NarratorIcon.js +1 -9
- package/dist/icons/OctagonIcon.js +1 -1
- package/dist/icons/PaintbrushIcon.js +1 -20
- package/dist/icons/PanelBottomIcon.js +23 -0
- package/dist/icons/PanelBottomOpenIcon.js +31 -0
- package/dist/icons/PanelLeftContractIcon.js +1 -1
- package/dist/icons/PanelLeftExpandIcon.js +1 -1
- package/dist/icons/PanelLeftIcon.js +1 -1
- package/dist/icons/PanelLeftOpenIcon.js +2 -2
- package/dist/icons/PanelRightContractIcon.js +1 -1
- package/dist/icons/PanelRightExpandIcon.js +1 -1
- package/dist/icons/PanelRightIcon.js +1 -1
- package/dist/icons/PanelRightOpenIcon.js +2 -2
- package/dist/icons/ParenthesesIcon.js +23 -0
- package/dist/icons/Pdf2Icon.js +1 -1
- package/dist/icons/PdfIcon.js +8 -6
- package/dist/icons/PhotoMultipleIcon.js +34 -0
- package/dist/icons/{PlayCircularIcon.js → PlayCircleIcon.js} +2 -2
- package/dist/icons/SaveMultipleIcon.js +34 -0
- package/dist/icons/SavePencilIcon.js +31 -0
- package/dist/icons/SearchCancelIcon.js +0 -11
- package/dist/icons/{SlashBoxIcon.js → SlashSquareIcon.js} +2 -2
- package/dist/icons/SplitHorizontalIcon.js +23 -0
- package/dist/icons/SplitVerticalIcon.js +23 -0
- package/dist/icons/TextAddIcon.js +1 -1
- package/dist/icons/TextBoldIcon.js +5 -2
- package/dist/icons/TextSubscriptIcon.js +1 -1
- package/dist/icons/TextSuperscriptIcon.js +1 -1
- package/dist/icons/ThumbsDownIcon.js +5 -2
- package/dist/icons/ThumbsUpIcon.js +5 -2
- package/dist/icons/TiktokIcon.js +5 -2
- package/dist/icons/{Volume1Icon.js → VolumeLowIcon.js} +2 -2
- package/dist/icons/{Volume0Icon.js → VolumeMediumIcon.js} +2 -2
- package/dist/icons/WindowAddIcon.js +43 -0
- package/dist/icons.js +183 -81
- package/dist/proicons-react.js +183 -81
- package/dist/proicons.d.ts +3500 -0
- package/dist/utils/rename.js +1 -1
- package/package.json +13 -10
- package/dist/icons/SaveAsIcon.js +0 -31
- package/lib/proicons-react.d.ts +0 -5172
|
@@ -0,0 +1,3500 @@
|
|
|
1
|
+
import * as React$1 from 'react';
|
|
2
|
+
|
|
3
|
+
export interface ProIconsOptions {
|
|
4
|
+
/** Determines the color of the icons. Defaults to `currentColor`. */
|
|
5
|
+
color?: string;
|
|
6
|
+
/** Determines the default stroke width of the icon. Defaults to `1.5`. This only works on SVG elements with existing strokes; add `outline` for this property to affect such elements. */
|
|
7
|
+
strokeWidth?: number;
|
|
8
|
+
/** Apply strokes to filled SVG elements, such as circles, by the value of `strokeWidth` with `1.5` (default stroke value) subtracted, if `width` is set to a value above `1.5`. Defaults to `false`
|
|
9
|
+
* @example If `strokeWidth` is set to `2`, filled SVG elements will have an additional `0.5` pixel stroke
|
|
10
|
+
*/
|
|
11
|
+
outline?: boolean;
|
|
12
|
+
/** Defaults to `round` */
|
|
13
|
+
strokeCaps?: "round" | "square" | "butt";
|
|
14
|
+
/** Defaults to `round` */
|
|
15
|
+
strokeJoin?: "round" | "miter" | "bevel";
|
|
16
|
+
/** Determines the corner radius of SVG elements. Does not apply to all rounded elements. */
|
|
17
|
+
cornerRadius?: number;
|
|
18
|
+
/** Determines the size of the icon in pixels. Defaults to `24` */
|
|
19
|
+
size?: number;
|
|
20
|
+
}
|
|
21
|
+
export type ProIconAttributes = React$1.SVGProps<SVGSVGElement> & ProIconsOptions;
|
|
22
|
+
/**
|
|
23
|
+
* @description
|
|
24
|
+
* @preview 
|
|
25
|
+
* @added v4.8.0
|
|
26
|
+
*/
|
|
27
|
+
export declare const AccessibilityIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
28
|
+
/**
|
|
29
|
+
* @description Add Circle, Plus
|
|
30
|
+
* @preview 
|
|
31
|
+
* @added v4.8.0
|
|
32
|
+
*/
|
|
33
|
+
export declare const AddCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
34
|
+
/**
|
|
35
|
+
* @description Add Diamond, Plus, Keyframe, Component
|
|
36
|
+
* @preview 
|
|
37
|
+
* @added v4.8.0
|
|
38
|
+
*/
|
|
39
|
+
export declare const AddRhombusIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
40
|
+
/**
|
|
41
|
+
* @description
|
|
42
|
+
* @preview 
|
|
43
|
+
* @added v4.8.0
|
|
44
|
+
* @updated v4.11.0
|
|
45
|
+
*/
|
|
46
|
+
export declare const AddSquareMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
47
|
+
/**
|
|
48
|
+
* @description Add Box, Plus
|
|
49
|
+
* @preview 
|
|
50
|
+
* @added v4.8.0
|
|
51
|
+
*/
|
|
52
|
+
export declare const AddSquareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
53
|
+
/**
|
|
54
|
+
* @description Plus, Create, New, Addition
|
|
55
|
+
* @preview 
|
|
56
|
+
* @added v4.8.0
|
|
57
|
+
*/
|
|
58
|
+
export declare const AddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
59
|
+
/**
|
|
60
|
+
* @description Aircraft, Plane, Aviation, Jet, Boeing, Airbus, Flight, Aeroplane, Airplane Mode, Flight Mode, Fly, TO, Climb
|
|
61
|
+
* @preview 
|
|
62
|
+
* @added v4.8.0
|
|
63
|
+
*/
|
|
64
|
+
export declare const AirplaneLandingIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
65
|
+
/**
|
|
66
|
+
* @description Aircraft, Plane, Aviation, Jet, Boeing, Airbus, Flight, Aeroplane, Airplane Mode, Flight Mode, Fly, TO, Climb
|
|
67
|
+
* @preview 
|
|
68
|
+
* @added v4.8.0
|
|
69
|
+
*/
|
|
70
|
+
export declare const AirplaneTakeoffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
71
|
+
/**
|
|
72
|
+
* @description Aircraft, Plane, Aviation, Jet, Boeing, Airbus, Flight, Aeroplane, Airplane Mode, Flight Mode, Fly
|
|
73
|
+
* @preview 
|
|
74
|
+
* @added v4.8.0
|
|
75
|
+
*/
|
|
76
|
+
export declare const AirplaneIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
77
|
+
/**
|
|
78
|
+
* @description Warning
|
|
79
|
+
* @preview 
|
|
80
|
+
* @added v4.8.0
|
|
81
|
+
*/
|
|
82
|
+
export declare const AlertCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
83
|
+
/**
|
|
84
|
+
* @description Warning
|
|
85
|
+
* @preview 
|
|
86
|
+
* @added v4.8.0
|
|
87
|
+
*/
|
|
88
|
+
export declare const AlertTriangleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
89
|
+
/**
|
|
90
|
+
* @description
|
|
91
|
+
* @preview 
|
|
92
|
+
* @added v4.8.0
|
|
93
|
+
*/
|
|
94
|
+
export declare const AlignBottomIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
95
|
+
/**
|
|
96
|
+
* @description
|
|
97
|
+
* @preview 
|
|
98
|
+
* @added v4.8.0
|
|
99
|
+
*/
|
|
100
|
+
export declare const AlignHorizontalCentersIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
101
|
+
/**
|
|
102
|
+
* @description
|
|
103
|
+
* @preview 
|
|
104
|
+
* @added v4.8.0
|
|
105
|
+
*/
|
|
106
|
+
export declare const AlignLeftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
107
|
+
/**
|
|
108
|
+
* @description
|
|
109
|
+
* @preview 
|
|
110
|
+
* @added v4.8.0
|
|
111
|
+
*/
|
|
112
|
+
export declare const AlignRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
113
|
+
/**
|
|
114
|
+
* @description
|
|
115
|
+
* @preview 
|
|
116
|
+
* @added v4.8.0
|
|
117
|
+
*/
|
|
118
|
+
export declare const AlignTopIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
119
|
+
/**
|
|
120
|
+
* @description
|
|
121
|
+
* @preview 
|
|
122
|
+
* @added v4.8.0
|
|
123
|
+
*/
|
|
124
|
+
export declare const AlignVerticalCentersIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
125
|
+
/**
|
|
126
|
+
* @description Shopping, Delivery, Prime
|
|
127
|
+
* @preview 
|
|
128
|
+
* @added v4.8.0
|
|
129
|
+
*/
|
|
130
|
+
export declare const AmazonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
131
|
+
/**
|
|
132
|
+
* @description Lock
|
|
133
|
+
* @preview 
|
|
134
|
+
* @added v4.8.0
|
|
135
|
+
* @updated v4.11.0
|
|
136
|
+
*/
|
|
137
|
+
export declare const AnchorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
138
|
+
/**
|
|
139
|
+
* @description Social
|
|
140
|
+
* @preview 
|
|
141
|
+
* @added v4.11.0
|
|
142
|
+
*/
|
|
143
|
+
export declare const AndroidIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
144
|
+
/**
|
|
145
|
+
* @description
|
|
146
|
+
* @preview 
|
|
147
|
+
* @added v4.8.0
|
|
148
|
+
*/
|
|
149
|
+
export declare const AngleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
150
|
+
/**
|
|
151
|
+
* @description Uninstall, Delete App
|
|
152
|
+
* @preview 
|
|
153
|
+
* @added v4.8.0
|
|
154
|
+
*/
|
|
155
|
+
export declare const AppRemoveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
156
|
+
/**
|
|
157
|
+
* @description Apple, Mac App Store, Apple App Store, iOS, iPadOS, macOS
|
|
158
|
+
* @preview 
|
|
159
|
+
* @added v4.8.0
|
|
160
|
+
*/
|
|
161
|
+
export declare const AppStoreIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
162
|
+
/**
|
|
163
|
+
* @description iPhone, iPad, Mac, iOS, iPadOS, watchOS, Watch, Tablet, Phone, Tim Cook, Steve Jobs, macOS, Cupertino
|
|
164
|
+
* @preview 
|
|
165
|
+
* @added v4.8.0
|
|
166
|
+
*/
|
|
167
|
+
export declare const AppleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
168
|
+
/**
|
|
169
|
+
* @description Add App, Install
|
|
170
|
+
* @preview 
|
|
171
|
+
* @added v4.8.0
|
|
172
|
+
*/
|
|
173
|
+
export declare const AppsAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
174
|
+
/**
|
|
175
|
+
* @description
|
|
176
|
+
* @preview 
|
|
177
|
+
* @added v4.8.0
|
|
178
|
+
*/
|
|
179
|
+
export declare const AppsListIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
180
|
+
/**
|
|
181
|
+
* @description Applications, Software, Plugins, Extensions
|
|
182
|
+
* @preview 
|
|
183
|
+
* @added v4.8.0
|
|
184
|
+
*/
|
|
185
|
+
export declare const AppsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
186
|
+
/**
|
|
187
|
+
* @description
|
|
188
|
+
* @preview 
|
|
189
|
+
* @added v4.8.0
|
|
190
|
+
*/
|
|
191
|
+
export declare const ArcIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
192
|
+
/**
|
|
193
|
+
* @description UPDATE
|
|
194
|
+
* @preview 
|
|
195
|
+
* @added v4.8.0
|
|
196
|
+
*/
|
|
197
|
+
export declare const ArchiveAdd2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
198
|
+
/**
|
|
199
|
+
* @description
|
|
200
|
+
* @preview 
|
|
201
|
+
* @added v4.8.0
|
|
202
|
+
*/
|
|
203
|
+
export declare const ArchiveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
204
|
+
/**
|
|
205
|
+
* @description
|
|
206
|
+
* @preview 
|
|
207
|
+
* @added v4.8.0
|
|
208
|
+
*/
|
|
209
|
+
export declare const ArrowClockwiseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
210
|
+
/**
|
|
211
|
+
* @description
|
|
212
|
+
* @preview 
|
|
213
|
+
* @added v4.8.0
|
|
214
|
+
*/
|
|
215
|
+
export declare const ArrowCounterclockwiseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
216
|
+
/**
|
|
217
|
+
* @description
|
|
218
|
+
* @preview 
|
|
219
|
+
* @added v4.8.0
|
|
220
|
+
*/
|
|
221
|
+
export declare const ArrowDownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
222
|
+
/**
|
|
223
|
+
* @description
|
|
224
|
+
* @preview 
|
|
225
|
+
* @added v4.8.0
|
|
226
|
+
*/
|
|
227
|
+
export declare const ArrowDownloadIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
228
|
+
/**
|
|
229
|
+
* @description
|
|
230
|
+
* @preview 
|
|
231
|
+
* @added v4.8.0
|
|
232
|
+
*/
|
|
233
|
+
export declare const ArrowEnterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
234
|
+
/**
|
|
235
|
+
* @description
|
|
236
|
+
* @preview 
|
|
237
|
+
* @added v4.8.0
|
|
238
|
+
*/
|
|
239
|
+
export declare const ArrowExportIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
240
|
+
/**
|
|
241
|
+
* @description
|
|
242
|
+
* @preview 
|
|
243
|
+
* @added v4.8.0
|
|
244
|
+
*/
|
|
245
|
+
export declare const ArrowForwardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
246
|
+
/**
|
|
247
|
+
* @description
|
|
248
|
+
* @preview 
|
|
249
|
+
* @added v4.8.0
|
|
250
|
+
*/
|
|
251
|
+
export declare const ArrowImportIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
252
|
+
/**
|
|
253
|
+
* @description Left Right, Bidirectional, Horizontal, Width, Size, Wide
|
|
254
|
+
* @preview 
|
|
255
|
+
* @added v4.8.0
|
|
256
|
+
*/
|
|
257
|
+
export declare const ArrowLeftRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
258
|
+
/**
|
|
259
|
+
* @description
|
|
260
|
+
* @preview 
|
|
261
|
+
* @added v4.8.0
|
|
262
|
+
*/
|
|
263
|
+
export declare const ArrowLeftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
264
|
+
/**
|
|
265
|
+
* @description
|
|
266
|
+
* @preview 
|
|
267
|
+
* @added v4.8.0
|
|
268
|
+
*/
|
|
269
|
+
export declare const ArrowMaximizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
270
|
+
/**
|
|
271
|
+
* @description
|
|
272
|
+
* @preview 
|
|
273
|
+
* @added v4.8.0
|
|
274
|
+
*/
|
|
275
|
+
export declare const ArrowMinimizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
276
|
+
/**
|
|
277
|
+
* @description Arrow 4-Way, Move
|
|
278
|
+
* @preview 
|
|
279
|
+
* @added v4.8.0
|
|
280
|
+
*/
|
|
281
|
+
export declare const ArrowMoveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
282
|
+
/**
|
|
283
|
+
* @description
|
|
284
|
+
* @preview 
|
|
285
|
+
* @added v4.8.0
|
|
286
|
+
*/
|
|
287
|
+
export declare const ArrowRedo2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
288
|
+
/**
|
|
289
|
+
* @description
|
|
290
|
+
* @preview 
|
|
291
|
+
* @added v4.8.0
|
|
292
|
+
*/
|
|
293
|
+
export declare const ArrowRedoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
294
|
+
/**
|
|
295
|
+
* @description
|
|
296
|
+
* @preview 
|
|
297
|
+
* @added v4.8.0
|
|
298
|
+
*/
|
|
299
|
+
export declare const ArrowReplyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
300
|
+
/**
|
|
301
|
+
* @description
|
|
302
|
+
* @preview 
|
|
303
|
+
* @added v4.8.0
|
|
304
|
+
*/
|
|
305
|
+
export declare const ArrowRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
306
|
+
/**
|
|
307
|
+
* @description
|
|
308
|
+
* @preview 
|
|
309
|
+
* @added v4.8.0
|
|
310
|
+
*/
|
|
311
|
+
export declare const ArrowRotateClockwiseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
312
|
+
/**
|
|
313
|
+
* @description
|
|
314
|
+
* @preview 
|
|
315
|
+
* @added v4.8.0
|
|
316
|
+
*/
|
|
317
|
+
export declare const ArrowRotateCounterclockwiseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
318
|
+
/**
|
|
319
|
+
* @description
|
|
320
|
+
* @preview 
|
|
321
|
+
* @added v4.8.0
|
|
322
|
+
*/
|
|
323
|
+
export declare const ArrowSortIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
324
|
+
/**
|
|
325
|
+
* @description
|
|
326
|
+
* @preview 
|
|
327
|
+
* @added v4.8.0
|
|
328
|
+
*/
|
|
329
|
+
export declare const ArrowSwapIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
330
|
+
/**
|
|
331
|
+
* @description Synchronize
|
|
332
|
+
* @preview 
|
|
333
|
+
* @added v4.8.0
|
|
334
|
+
*/
|
|
335
|
+
export declare const ArrowSync2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
336
|
+
/**
|
|
337
|
+
* @description Synchronize
|
|
338
|
+
* @preview 
|
|
339
|
+
* @added v4.8.0
|
|
340
|
+
*/
|
|
341
|
+
export declare const ArrowSyncIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
342
|
+
/**
|
|
343
|
+
* @description
|
|
344
|
+
* @preview 
|
|
345
|
+
* @added v4.8.0
|
|
346
|
+
*/
|
|
347
|
+
export declare const ArrowTrendingIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
348
|
+
/**
|
|
349
|
+
* @description
|
|
350
|
+
* @preview 
|
|
351
|
+
* @added v4.8.0
|
|
352
|
+
*/
|
|
353
|
+
export declare const ArrowUndo2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
354
|
+
/**
|
|
355
|
+
* @description
|
|
356
|
+
* @preview 
|
|
357
|
+
* @added v4.8.0
|
|
358
|
+
*/
|
|
359
|
+
export declare const ArrowUndoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
360
|
+
/**
|
|
361
|
+
* @description Up-Down, Bidirectional, Vertical, Height, Size
|
|
362
|
+
* @preview 
|
|
363
|
+
* @added v4.8.0
|
|
364
|
+
*/
|
|
365
|
+
export declare const ArrowUpDownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
366
|
+
/**
|
|
367
|
+
* @description
|
|
368
|
+
* @preview 
|
|
369
|
+
* @added v4.8.0
|
|
370
|
+
*/
|
|
371
|
+
export declare const ArrowUpIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
372
|
+
/**
|
|
373
|
+
* @description
|
|
374
|
+
* @preview 
|
|
375
|
+
* @added v4.8.0
|
|
376
|
+
*/
|
|
377
|
+
export declare const ArrowUploadIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
378
|
+
/**
|
|
379
|
+
* @description Clip, Paper Clip, Paperclip
|
|
380
|
+
* @preview 
|
|
381
|
+
* @added v4.8.0
|
|
382
|
+
*/
|
|
383
|
+
export declare const AttachIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
384
|
+
/**
|
|
385
|
+
* @description
|
|
386
|
+
* @preview 
|
|
387
|
+
* @added v4.8.0
|
|
388
|
+
*/
|
|
389
|
+
export declare const BackgroundColorAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
390
|
+
/**
|
|
391
|
+
* @description
|
|
392
|
+
* @preview 
|
|
393
|
+
* @added v4.8.0
|
|
394
|
+
*/
|
|
395
|
+
export declare const BackgroundColorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
396
|
+
/**
|
|
397
|
+
* @description Delete
|
|
398
|
+
* @preview 
|
|
399
|
+
* @added v4.8.0
|
|
400
|
+
*/
|
|
401
|
+
export declare const BackspaceIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
402
|
+
/**
|
|
403
|
+
* @description
|
|
404
|
+
* @preview 
|
|
405
|
+
* @added v4.8.0
|
|
406
|
+
*/
|
|
407
|
+
export declare const BadgeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
408
|
+
/**
|
|
409
|
+
* @description Museum, Columns, Hall, Library, Government, Legal
|
|
410
|
+
* @preview 
|
|
411
|
+
* @added v4.8.0
|
|
412
|
+
* @updated v4.11.2
|
|
413
|
+
*/
|
|
414
|
+
export declare const BankIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
415
|
+
/**
|
|
416
|
+
* @description Stats, Statistics, Data, Graph, Chart
|
|
417
|
+
* @preview 
|
|
418
|
+
* @added v4.8.0
|
|
419
|
+
*/
|
|
420
|
+
export declare const BarGraphIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
421
|
+
/**
|
|
422
|
+
* @description
|
|
423
|
+
* @preview 
|
|
424
|
+
* @added v4.8.0
|
|
425
|
+
*/
|
|
426
|
+
export declare const BatteryFullIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
427
|
+
/**
|
|
428
|
+
* @description
|
|
429
|
+
* @preview 
|
|
430
|
+
* @added v4.8.0
|
|
431
|
+
*/
|
|
432
|
+
export declare const BatteryIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
433
|
+
/**
|
|
434
|
+
* @description
|
|
435
|
+
* @preview 
|
|
436
|
+
* @added v4.8.0
|
|
437
|
+
*/
|
|
438
|
+
export declare const BeachIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
439
|
+
/**
|
|
440
|
+
* @description Flask, Test, Lab, Experiment
|
|
441
|
+
* @preview 
|
|
442
|
+
* @added v4.8.0
|
|
443
|
+
*/
|
|
444
|
+
export declare const BeakerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
445
|
+
/**
|
|
446
|
+
* @description New Notification, Alert, Unread
|
|
447
|
+
* @preview 
|
|
448
|
+
* @added v4.11.0
|
|
449
|
+
*/
|
|
450
|
+
export declare const BellDotIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
451
|
+
/**
|
|
452
|
+
* @description Notification, Alert, Do Not Disturb
|
|
453
|
+
* @preview 
|
|
454
|
+
* @added v4.11.0
|
|
455
|
+
*/
|
|
456
|
+
export declare const BellOffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
457
|
+
/**
|
|
458
|
+
* @description Notification, Alert
|
|
459
|
+
* @preview 
|
|
460
|
+
* @added v4.8.0
|
|
461
|
+
*/
|
|
462
|
+
export declare const BellIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
463
|
+
/**
|
|
464
|
+
* @description Bsky, Twitter, Butterfly, Social
|
|
465
|
+
* @preview 
|
|
466
|
+
* @added v4.11.2
|
|
467
|
+
*/
|
|
468
|
+
export declare const BlueskyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
469
|
+
/**
|
|
470
|
+
* @description BT, Wireless
|
|
471
|
+
* @preview 
|
|
472
|
+
* @added v4.8.0
|
|
473
|
+
*/
|
|
474
|
+
export declare const BluetoothIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
475
|
+
/**
|
|
476
|
+
* @description
|
|
477
|
+
* @preview 
|
|
478
|
+
* @added v4.8.0
|
|
479
|
+
*/
|
|
480
|
+
export declare const BoardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
481
|
+
/**
|
|
482
|
+
* @description Lightning, Strike, Flash, Zap
|
|
483
|
+
* @preview 
|
|
484
|
+
* @added v4.10.0
|
|
485
|
+
*/
|
|
486
|
+
export declare const BoltIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
487
|
+
/**
|
|
488
|
+
* @description
|
|
489
|
+
* @preview 
|
|
490
|
+
* @added v4.8.0
|
|
491
|
+
*/
|
|
492
|
+
export declare const Book2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
493
|
+
/**
|
|
494
|
+
* @description
|
|
495
|
+
* @preview 
|
|
496
|
+
* @added v4.8.0
|
|
497
|
+
*/
|
|
498
|
+
export declare const BookAdd2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
499
|
+
/**
|
|
500
|
+
* @description
|
|
501
|
+
* @preview 
|
|
502
|
+
* @added v4.8.0
|
|
503
|
+
*/
|
|
504
|
+
export declare const BookAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
505
|
+
/**
|
|
506
|
+
* @description Manual, Infobook, Tutorial
|
|
507
|
+
* @preview 
|
|
508
|
+
* @added v4.8.0
|
|
509
|
+
*/
|
|
510
|
+
export declare const BookInfo2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
511
|
+
/**
|
|
512
|
+
* @description
|
|
513
|
+
* @preview 
|
|
514
|
+
* @added v4.8.0
|
|
515
|
+
*/
|
|
516
|
+
export declare const BookInfoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
517
|
+
/**
|
|
518
|
+
* @description Reading
|
|
519
|
+
* @preview 
|
|
520
|
+
* @added v4.8.0
|
|
521
|
+
*/
|
|
522
|
+
export declare const BookOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
523
|
+
/**
|
|
524
|
+
* @description Reading
|
|
525
|
+
* @preview 
|
|
526
|
+
* @added v4.8.0
|
|
527
|
+
*/
|
|
528
|
+
export declare const BookIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
529
|
+
/**
|
|
530
|
+
* @description
|
|
531
|
+
* @preview 
|
|
532
|
+
* @added v4.8.0
|
|
533
|
+
* @updated v4.11.0
|
|
534
|
+
*/
|
|
535
|
+
export declare const BookmarkAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
536
|
+
/**
|
|
537
|
+
* @description
|
|
538
|
+
* @preview 
|
|
539
|
+
* @added v4.8.0
|
|
540
|
+
* @updated v4.11.0
|
|
541
|
+
*/
|
|
542
|
+
export declare const BookmarkMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
543
|
+
/**
|
|
544
|
+
* @description Favorite
|
|
545
|
+
* @preview 
|
|
546
|
+
* @added v4.8.0
|
|
547
|
+
* @updated v4.11.0
|
|
548
|
+
*/
|
|
549
|
+
export declare const BookmarkIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
550
|
+
/**
|
|
551
|
+
* @description Not to be confused with 'Microsoft'
|
|
552
|
+
* @preview 
|
|
553
|
+
* @added v4.8.0
|
|
554
|
+
*/
|
|
555
|
+
export declare const BorderAllIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
556
|
+
/**
|
|
557
|
+
* @description Grab, Hand, Drop, Grabber, Dragging
|
|
558
|
+
* @preview 
|
|
559
|
+
* @added v4.8.0
|
|
560
|
+
*/
|
|
561
|
+
export declare const BoxDragIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
562
|
+
/**
|
|
563
|
+
* @description
|
|
564
|
+
* @preview 
|
|
565
|
+
* @added v4.8.0
|
|
566
|
+
*/
|
|
567
|
+
export declare const BoxMarginsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
568
|
+
/**
|
|
569
|
+
* @description Package, Amazon, Delivery
|
|
570
|
+
* @preview 
|
|
571
|
+
* @added v4.8.0
|
|
572
|
+
*/
|
|
573
|
+
export declare const BoxIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
574
|
+
/**
|
|
575
|
+
* @description
|
|
576
|
+
* @preview 
|
|
577
|
+
* @added v4.8.0
|
|
578
|
+
*/
|
|
579
|
+
export declare const BracesVariableIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
580
|
+
/**
|
|
581
|
+
* @description Code, Curly Braces
|
|
582
|
+
* @preview 
|
|
583
|
+
* @added v4.8.0
|
|
584
|
+
* @updated v4.11.2
|
|
585
|
+
*/
|
|
586
|
+
export declare const BracesIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
587
|
+
/**
|
|
588
|
+
* @description Code
|
|
589
|
+
* @preview 
|
|
590
|
+
* @added v4.11.0
|
|
591
|
+
*/
|
|
592
|
+
export declare const BracketsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
593
|
+
/**
|
|
594
|
+
* @description Git
|
|
595
|
+
* @preview 
|
|
596
|
+
* @added v4.8.0
|
|
597
|
+
* @updated v4.10.0
|
|
598
|
+
*/
|
|
599
|
+
export declare const BranchCompareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
600
|
+
/**
|
|
601
|
+
* @description Git
|
|
602
|
+
* @preview 
|
|
603
|
+
* @added v4.8.0
|
|
604
|
+
*/
|
|
605
|
+
export declare const BranchFork2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
606
|
+
/**
|
|
607
|
+
* @description Git
|
|
608
|
+
* @preview 
|
|
609
|
+
* @added v4.8.0
|
|
610
|
+
*/
|
|
611
|
+
export declare const BranchForkIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
612
|
+
/**
|
|
613
|
+
* @description Git
|
|
614
|
+
* @preview 
|
|
615
|
+
* @added v4.10.0
|
|
616
|
+
*/
|
|
617
|
+
export declare const BranchPullRequestIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
618
|
+
/**
|
|
619
|
+
* @description
|
|
620
|
+
* @preview 
|
|
621
|
+
* @added v4.8.0
|
|
622
|
+
* @updated v4.10.0
|
|
623
|
+
*/
|
|
624
|
+
export declare const BranchIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
625
|
+
/**
|
|
626
|
+
* @description Suitcase, Work
|
|
627
|
+
* @preview 
|
|
628
|
+
* @added v4.8.0
|
|
629
|
+
*/
|
|
630
|
+
export declare const Briefcase2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
631
|
+
/**
|
|
632
|
+
* @description Suitcase
|
|
633
|
+
* @preview 
|
|
634
|
+
* @added v4.8.0
|
|
635
|
+
*/
|
|
636
|
+
export declare const BriefcaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
637
|
+
/**
|
|
638
|
+
* @description Weather Sunny
|
|
639
|
+
* @preview 
|
|
640
|
+
* @added v4.8.0
|
|
641
|
+
*/
|
|
642
|
+
export declare const BrightnessIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
643
|
+
/**
|
|
644
|
+
* @description Sweep, Clean
|
|
645
|
+
* @preview 
|
|
646
|
+
* @added v4.8.0
|
|
647
|
+
*/
|
|
648
|
+
export declare const BroomIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
649
|
+
/**
|
|
650
|
+
* @description
|
|
651
|
+
* @preview 
|
|
652
|
+
* @added v4.8.0
|
|
653
|
+
*/
|
|
654
|
+
export declare const BugIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
655
|
+
/**
|
|
656
|
+
* @description
|
|
657
|
+
* @preview 
|
|
658
|
+
* @added v4.8.0
|
|
659
|
+
*/
|
|
660
|
+
export declare const BuildingMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
661
|
+
/**
|
|
662
|
+
* @description UI
|
|
663
|
+
* @preview 
|
|
664
|
+
* @added v4.8.0
|
|
665
|
+
*/
|
|
666
|
+
export declare const ButtonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
667
|
+
/**
|
|
668
|
+
* @description Birthday, Party
|
|
669
|
+
* @preview 
|
|
670
|
+
* @added v4.8.0
|
|
671
|
+
*/
|
|
672
|
+
export declare const CakeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
673
|
+
/**
|
|
674
|
+
* @description Solve, Math
|
|
675
|
+
* @preview 
|
|
676
|
+
* @added v4.8.0
|
|
677
|
+
*/
|
|
678
|
+
export declare const CalculatorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
679
|
+
/**
|
|
680
|
+
* @description Date
|
|
681
|
+
* @preview 
|
|
682
|
+
* @added v4.8.0
|
|
683
|
+
*/
|
|
684
|
+
export declare const CalendarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
685
|
+
/**
|
|
686
|
+
* @description Sketch
|
|
687
|
+
* @preview 
|
|
688
|
+
* @added v4.8.0
|
|
689
|
+
*/
|
|
690
|
+
export declare const CalligraphyPenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
691
|
+
/**
|
|
692
|
+
* @description Photo, Picture, Photography, Shot, Shoot
|
|
693
|
+
* @preview 
|
|
694
|
+
* @added v4.8.0
|
|
695
|
+
*/
|
|
696
|
+
export declare const CameraIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
697
|
+
/**
|
|
698
|
+
* @description
|
|
699
|
+
* @preview 
|
|
700
|
+
* @added v4.8.0
|
|
701
|
+
*/
|
|
702
|
+
export declare const CancelCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
703
|
+
/**
|
|
704
|
+
* @description Stop, Sign
|
|
705
|
+
* @preview 
|
|
706
|
+
* @added v4.11.2
|
|
707
|
+
*/
|
|
708
|
+
export declare const CancelOctagonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
709
|
+
/**
|
|
710
|
+
* @description
|
|
711
|
+
* @preview 
|
|
712
|
+
* @added v4.8.0
|
|
713
|
+
*/
|
|
714
|
+
export declare const CancelSquareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
715
|
+
/**
|
|
716
|
+
* @description Dismiss, X, Close, Abort, Delete
|
|
717
|
+
* @preview 
|
|
718
|
+
* @added v4.8.0
|
|
719
|
+
*/
|
|
720
|
+
export declare const CancelIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
721
|
+
/**
|
|
722
|
+
* @description Halloween, Trick or Treat
|
|
723
|
+
* @preview 
|
|
724
|
+
* @added v4.10.0
|
|
725
|
+
*/
|
|
726
|
+
export declare const CandyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
727
|
+
/**
|
|
728
|
+
* @description Shopping, Trolley, Amazon, Shopping Cart
|
|
729
|
+
* @preview 
|
|
730
|
+
* @added v4.8.0
|
|
731
|
+
*/
|
|
732
|
+
export declare const CartIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
733
|
+
/**
|
|
734
|
+
* @description $, Money, Coin, Dollar, ¢
|
|
735
|
+
* @preview 
|
|
736
|
+
* @added v4.8.0
|
|
737
|
+
*/
|
|
738
|
+
export declare const CentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
739
|
+
/**
|
|
740
|
+
* @description Stats, Statistics, Data, Graph, Chart
|
|
741
|
+
* @preview 
|
|
742
|
+
* @added v4.8.0
|
|
743
|
+
*/
|
|
744
|
+
export declare const CenterHorizontalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
745
|
+
/**
|
|
746
|
+
* @description Stats, Statistics, Data, Graph, Chart
|
|
747
|
+
* @preview 
|
|
748
|
+
* @added v4.8.0
|
|
749
|
+
*/
|
|
750
|
+
export declare const CenterVerticalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
751
|
+
/**
|
|
752
|
+
* @description
|
|
753
|
+
* @preview 
|
|
754
|
+
* @added v4.8.0
|
|
755
|
+
*/
|
|
756
|
+
export declare const ChatIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
757
|
+
/**
|
|
758
|
+
* @description
|
|
759
|
+
* @preview 
|
|
760
|
+
* @added v4.11.0
|
|
761
|
+
*/
|
|
762
|
+
export declare const CheckboxCheckedIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
763
|
+
/**
|
|
764
|
+
* @description
|
|
765
|
+
* @preview 
|
|
766
|
+
* @added v4.11.0
|
|
767
|
+
* @updated v4.11.0
|
|
768
|
+
*/
|
|
769
|
+
export declare const CheckboxIndeterminate2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
770
|
+
/**
|
|
771
|
+
* @description
|
|
772
|
+
* @preview 
|
|
773
|
+
* @added v4.11.0
|
|
774
|
+
*/
|
|
775
|
+
export declare const CheckboxIndeterminateIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
776
|
+
/**
|
|
777
|
+
* @description
|
|
778
|
+
* @preview 
|
|
779
|
+
* @added v4.8.0
|
|
780
|
+
*/
|
|
781
|
+
export declare const CheckboxUncheckedIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
782
|
+
/**
|
|
783
|
+
* @description
|
|
784
|
+
* @preview 
|
|
785
|
+
* @added v4.8.0
|
|
786
|
+
*/
|
|
787
|
+
export declare const CheckmarkCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
788
|
+
/**
|
|
789
|
+
* @description Verified, Twitter Blue, Trusted, Safe, Legitimate, Real, X Premium
|
|
790
|
+
* @preview 
|
|
791
|
+
* @added v4.8.0
|
|
792
|
+
*/
|
|
793
|
+
export declare const CheckmarkStarburstIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
794
|
+
/**
|
|
795
|
+
* @description Done, Check, Completed
|
|
796
|
+
* @preview 
|
|
797
|
+
* @added v4.8.0
|
|
798
|
+
*/
|
|
799
|
+
export declare const CheckmarkIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
800
|
+
/**
|
|
801
|
+
* @description
|
|
802
|
+
* @preview 
|
|
803
|
+
* @added v4.8.0
|
|
804
|
+
*/
|
|
805
|
+
export declare const ChevronDownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
806
|
+
/**
|
|
807
|
+
* @description
|
|
808
|
+
* @preview 
|
|
809
|
+
* @added v4.8.0
|
|
810
|
+
*/
|
|
811
|
+
export declare const ChevronLeftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
812
|
+
/**
|
|
813
|
+
* @description
|
|
814
|
+
* @preview 
|
|
815
|
+
* @added v4.8.0
|
|
816
|
+
*/
|
|
817
|
+
export declare const ChevronRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
818
|
+
/**
|
|
819
|
+
* @description
|
|
820
|
+
* @preview 
|
|
821
|
+
* @added v4.8.0
|
|
822
|
+
*/
|
|
823
|
+
export declare const ChevronUpIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
824
|
+
/**
|
|
825
|
+
* @description
|
|
826
|
+
* @preview 
|
|
827
|
+
* @added v4.8.0
|
|
828
|
+
* @updated v4.11.2
|
|
829
|
+
*/
|
|
830
|
+
export declare const ChromeRestoreIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
831
|
+
/**
|
|
832
|
+
* @description Dot
|
|
833
|
+
* @preview 
|
|
834
|
+
* @added v4.8.0
|
|
835
|
+
*/
|
|
836
|
+
export declare const CircleSmallIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
837
|
+
/**
|
|
838
|
+
* @description
|
|
839
|
+
* @preview 
|
|
840
|
+
* @added v4.8.0
|
|
841
|
+
*/
|
|
842
|
+
export declare const CircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
843
|
+
/**
|
|
844
|
+
* @description
|
|
845
|
+
* @preview 
|
|
846
|
+
* @added v4.8.0
|
|
847
|
+
* @updated v4.9.0
|
|
848
|
+
*/
|
|
849
|
+
export declare const ClipboardPasteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
850
|
+
/**
|
|
851
|
+
* @description
|
|
852
|
+
* @preview 
|
|
853
|
+
* @added v4.8.0
|
|
854
|
+
* @updated v4.9.0
|
|
855
|
+
*/
|
|
856
|
+
export declare const ClipboardSearchIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
857
|
+
/**
|
|
858
|
+
* @description
|
|
859
|
+
* @preview 
|
|
860
|
+
* @added v4.8.0
|
|
861
|
+
* @updated v4.9.0
|
|
862
|
+
*/
|
|
863
|
+
export declare const ClipboardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
864
|
+
/**
|
|
865
|
+
* @description Analog, Time
|
|
866
|
+
* @preview 
|
|
867
|
+
* @added v4.8.0
|
|
868
|
+
*/
|
|
869
|
+
export declare const ClockIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
870
|
+
/**
|
|
871
|
+
* @description
|
|
872
|
+
* @preview 
|
|
873
|
+
* @added v4.8.0
|
|
874
|
+
*/
|
|
875
|
+
export declare const ClosedCaptionsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
876
|
+
/**
|
|
877
|
+
* @description
|
|
878
|
+
* @preview 
|
|
879
|
+
* @added v4.8.0
|
|
880
|
+
* @updated v4.11.2
|
|
881
|
+
*/
|
|
882
|
+
export declare const CloudIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
883
|
+
/**
|
|
884
|
+
* @description
|
|
885
|
+
* @preview 
|
|
886
|
+
* @added v4.8.0
|
|
887
|
+
*/
|
|
888
|
+
export declare const CodeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
889
|
+
/**
|
|
890
|
+
* @description
|
|
891
|
+
* @preview 
|
|
892
|
+
* @added v4.8.0
|
|
893
|
+
*/
|
|
894
|
+
export declare const CoffeeHotIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
895
|
+
/**
|
|
896
|
+
* @description Colour, Theme, Paint, Art
|
|
897
|
+
* @preview 
|
|
898
|
+
* @added v4.8.0
|
|
899
|
+
*/
|
|
900
|
+
export declare const ColorPaletteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
901
|
+
/**
|
|
902
|
+
* @description Message
|
|
903
|
+
* @preview 
|
|
904
|
+
* @added v4.11.2
|
|
905
|
+
*/
|
|
906
|
+
export declare const CommentAdd2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
907
|
+
/**
|
|
908
|
+
* @description Message
|
|
909
|
+
* @preview 
|
|
910
|
+
* @added v4.11.2
|
|
911
|
+
*/
|
|
912
|
+
export declare const CommentAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
913
|
+
/**
|
|
914
|
+
* @description Message, Important
|
|
915
|
+
* @preview 
|
|
916
|
+
* @added v4.11.0
|
|
917
|
+
* @updated v4.11.2
|
|
918
|
+
*/
|
|
919
|
+
export declare const CommentExclamationIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
920
|
+
/**
|
|
921
|
+
* @description Message, Conversation
|
|
922
|
+
* @preview 
|
|
923
|
+
* @added v4.8.0
|
|
924
|
+
* @updated v4.11.2
|
|
925
|
+
*/
|
|
926
|
+
export declare const CommentMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
927
|
+
/**
|
|
928
|
+
* @description Message
|
|
929
|
+
* @preview 
|
|
930
|
+
* @added v4.8.0
|
|
931
|
+
* @updated v4.11.2
|
|
932
|
+
*/
|
|
933
|
+
export declare const CommentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
934
|
+
/**
|
|
935
|
+
* @description
|
|
936
|
+
* @preview 
|
|
937
|
+
* @added v4.8.0
|
|
938
|
+
*/
|
|
939
|
+
export declare const CompareSizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
940
|
+
/**
|
|
941
|
+
* @description Direction, Explore, Safari
|
|
942
|
+
* @preview 
|
|
943
|
+
* @added v4.8.0
|
|
944
|
+
*/
|
|
945
|
+
export declare const CompassIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
946
|
+
/**
|
|
947
|
+
* @description Symbol, Figma, Sketch, Icon, Asset
|
|
948
|
+
* @preview 
|
|
949
|
+
* @added v4.8.0
|
|
950
|
+
*/
|
|
951
|
+
export declare const ComponentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
952
|
+
/**
|
|
953
|
+
* @description Mail, Write
|
|
954
|
+
* @preview 
|
|
955
|
+
* @added v4.8.0
|
|
956
|
+
*/
|
|
957
|
+
export declare const ComposeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
958
|
+
/**
|
|
959
|
+
* @description iMac, All-in-one, AIO, Desktop, Apple, Mac
|
|
960
|
+
* @preview 
|
|
961
|
+
* @added v4.8.0
|
|
962
|
+
*/
|
|
963
|
+
export declare const ComputerMacIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
964
|
+
/**
|
|
965
|
+
* @description All-in-one, AIO, Desktop, PC
|
|
966
|
+
* @preview 
|
|
967
|
+
* @added v4.8.0
|
|
968
|
+
*/
|
|
969
|
+
export declare const ComputerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
970
|
+
/**
|
|
971
|
+
* @description
|
|
972
|
+
* @preview 
|
|
973
|
+
* @added v4.8.0
|
|
974
|
+
*/
|
|
975
|
+
export declare const ContractDownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
976
|
+
/**
|
|
977
|
+
* @description
|
|
978
|
+
* @preview 
|
|
979
|
+
* @added v4.8.0
|
|
980
|
+
*/
|
|
981
|
+
export declare const CookiesIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
982
|
+
/**
|
|
983
|
+
* @description Clipboard
|
|
984
|
+
* @preview 
|
|
985
|
+
* @added v4.8.0
|
|
986
|
+
* @updated v4.11.0
|
|
987
|
+
*/
|
|
988
|
+
export declare const CopyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
989
|
+
/**
|
|
990
|
+
* @description Legal, Rights, License
|
|
991
|
+
* @preview 
|
|
992
|
+
* @added v4.11.0
|
|
993
|
+
*/
|
|
994
|
+
export declare const CopyleftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
995
|
+
/**
|
|
996
|
+
* @description Legal, Rights, License, Protection
|
|
997
|
+
* @preview 
|
|
998
|
+
* @added v4.11.0
|
|
999
|
+
*/
|
|
1000
|
+
export declare const CopyrightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1001
|
+
/**
|
|
1002
|
+
* @description
|
|
1003
|
+
* @preview 
|
|
1004
|
+
* @added v4.8.0
|
|
1005
|
+
*/
|
|
1006
|
+
export declare const CornerRadiusIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1007
|
+
/**
|
|
1008
|
+
* @description Debit Card, Payment
|
|
1009
|
+
* @preview 
|
|
1010
|
+
* @added v4.8.0
|
|
1011
|
+
*/
|
|
1012
|
+
export declare const CreditCardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1013
|
+
/**
|
|
1014
|
+
* @description Edit, Photo, Image, Picture
|
|
1015
|
+
* @preview 
|
|
1016
|
+
* @added v4.8.0
|
|
1017
|
+
*/
|
|
1018
|
+
export declare const CropIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1019
|
+
/**
|
|
1020
|
+
* @description CSS3, Stylesheet, Programming, Web, Cascading Style Sheet, Rebeccapurple
|
|
1021
|
+
* @preview 
|
|
1022
|
+
* @added v4.11.2
|
|
1023
|
+
*/
|
|
1024
|
+
export declare const Css2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1025
|
+
/**
|
|
1026
|
+
* @description CSS3, Stylesheet, Programming, Web, Cascading Style Sheet
|
|
1027
|
+
* @preview 
|
|
1028
|
+
* @added v4.8.0
|
|
1029
|
+
* @updated v4.11.2
|
|
1030
|
+
*/
|
|
1031
|
+
export declare const CssIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1032
|
+
/**
|
|
1033
|
+
* @description
|
|
1034
|
+
* @preview 
|
|
1035
|
+
* @added v4.8.0
|
|
1036
|
+
*/
|
|
1037
|
+
export declare const CursorClickIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1038
|
+
/**
|
|
1039
|
+
* @description Grab, Hand, Drop, Grabber
|
|
1040
|
+
* @preview 
|
|
1041
|
+
* @added v4.8.0
|
|
1042
|
+
*/
|
|
1043
|
+
export declare const CursorDragIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1044
|
+
/**
|
|
1045
|
+
* @description Cursor, Mouse, Pointer
|
|
1046
|
+
* @preview 
|
|
1047
|
+
* @added v4.8.0
|
|
1048
|
+
*/
|
|
1049
|
+
export declare const CursorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1050
|
+
/**
|
|
1051
|
+
* @description Scissors
|
|
1052
|
+
* @preview 
|
|
1053
|
+
* @added v4.8.0
|
|
1054
|
+
*/
|
|
1055
|
+
export declare const CutIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1056
|
+
/**
|
|
1057
|
+
* @description Appearance
|
|
1058
|
+
* @preview 
|
|
1059
|
+
* @added v4.8.0
|
|
1060
|
+
*/
|
|
1061
|
+
export declare const DarkThemeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1062
|
+
/**
|
|
1063
|
+
* @description
|
|
1064
|
+
* @preview 
|
|
1065
|
+
* @added v4.8.0
|
|
1066
|
+
*/
|
|
1067
|
+
export declare const DatabaseAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1068
|
+
/**
|
|
1069
|
+
* @description SQL, MongoDB
|
|
1070
|
+
* @preview 
|
|
1071
|
+
* @added v4.8.0
|
|
1072
|
+
*/
|
|
1073
|
+
export declare const DatabaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1074
|
+
/**
|
|
1075
|
+
* @description Trash, Remove
|
|
1076
|
+
* @preview 
|
|
1077
|
+
* @added v4.8.0
|
|
1078
|
+
*/
|
|
1079
|
+
export declare const DeleteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1080
|
+
/**
|
|
1081
|
+
* @description Premium, Pro
|
|
1082
|
+
* @preview 
|
|
1083
|
+
* @added v4.8.0
|
|
1084
|
+
*/
|
|
1085
|
+
export declare const DiamondIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1086
|
+
/**
|
|
1087
|
+
* @description
|
|
1088
|
+
* @preview 
|
|
1089
|
+
* @added v4.8.0
|
|
1090
|
+
*/
|
|
1091
|
+
export declare const DirectionsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1092
|
+
/**
|
|
1093
|
+
* @description
|
|
1094
|
+
* @preview 
|
|
1095
|
+
* @added v4.8.0
|
|
1096
|
+
*/
|
|
1097
|
+
export declare const DoNotDisturbIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1098
|
+
/**
|
|
1099
|
+
* @description Docs
|
|
1100
|
+
* @preview 
|
|
1101
|
+
* @added v4.8.0
|
|
1102
|
+
*/
|
|
1103
|
+
export declare const DocumentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1104
|
+
/**
|
|
1105
|
+
* @description $, Money, Cash, Bill, Currency
|
|
1106
|
+
* @preview 
|
|
1107
|
+
* @added v4.11.0
|
|
1108
|
+
*/
|
|
1109
|
+
export declare const DollarCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1110
|
+
/**
|
|
1111
|
+
* @description $, Money, Cash, Bill, Currency
|
|
1112
|
+
* @preview 
|
|
1113
|
+
* @added v4.8.0
|
|
1114
|
+
*/
|
|
1115
|
+
export declare const DollarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1116
|
+
/**
|
|
1117
|
+
* @description Configure, Spanner, Options, Mechanism, Mechanic
|
|
1118
|
+
* @preview 
|
|
1119
|
+
* @added v4.10.0
|
|
1120
|
+
*/
|
|
1121
|
+
export declare const DoorOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1122
|
+
/**
|
|
1123
|
+
* @description Closed
|
|
1124
|
+
* @preview 
|
|
1125
|
+
* @added v4.10.0
|
|
1126
|
+
*/
|
|
1127
|
+
export declare const DoorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1128
|
+
/**
|
|
1129
|
+
* @description
|
|
1130
|
+
* @preview 
|
|
1131
|
+
* @added v4.8.0
|
|
1132
|
+
* @updated v4.11.2
|
|
1133
|
+
*/
|
|
1134
|
+
export declare const DrawTextIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1135
|
+
/**
|
|
1136
|
+
* @description Water, Fill, Transparency, Transparent, Droplet
|
|
1137
|
+
* @preview 
|
|
1138
|
+
* @added v4.8.0
|
|
1139
|
+
*/
|
|
1140
|
+
export declare const DropIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1141
|
+
/**
|
|
1142
|
+
* @description Sad, Dislike, Not Helpful
|
|
1143
|
+
* @preview 
|
|
1144
|
+
* @added v4.8.0
|
|
1145
|
+
*/
|
|
1146
|
+
export declare const EmojiFrownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1147
|
+
/**
|
|
1148
|
+
* @description
|
|
1149
|
+
* @preview 
|
|
1150
|
+
* @added v4.8.0
|
|
1151
|
+
*/
|
|
1152
|
+
export declare const EmojiGrinIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1153
|
+
/**
|
|
1154
|
+
* @description
|
|
1155
|
+
* @preview 
|
|
1156
|
+
* @added v4.8.0
|
|
1157
|
+
*/
|
|
1158
|
+
export declare const EmojiLaughterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1159
|
+
/**
|
|
1160
|
+
* @description Smile, Happy, Smiley, Like, Helpful
|
|
1161
|
+
* @preview 
|
|
1162
|
+
* @added v4.8.0
|
|
1163
|
+
*/
|
|
1164
|
+
export declare const EmojiIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1165
|
+
/**
|
|
1166
|
+
* @description
|
|
1167
|
+
* @preview 
|
|
1168
|
+
* @added v4.8.0
|
|
1169
|
+
*/
|
|
1170
|
+
export declare const EraserIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1171
|
+
/**
|
|
1172
|
+
* @description
|
|
1173
|
+
* @preview 
|
|
1174
|
+
* @added v4.8.0
|
|
1175
|
+
*/
|
|
1176
|
+
export declare const ExpandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1177
|
+
/**
|
|
1178
|
+
* @description Puzzle
|
|
1179
|
+
* @preview 
|
|
1180
|
+
* @added v4.8.0
|
|
1181
|
+
* @updated v4.11.2
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const ExtensionIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1184
|
+
/**
|
|
1185
|
+
* @description Invisible, Hidden, Hide
|
|
1186
|
+
* @preview 
|
|
1187
|
+
* @added v4.8.0
|
|
1188
|
+
*/
|
|
1189
|
+
export declare const EyeOffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1190
|
+
/**
|
|
1191
|
+
* @description Look, Show
|
|
1192
|
+
* @preview 
|
|
1193
|
+
* @added v4.8.0
|
|
1194
|
+
*/
|
|
1195
|
+
export declare const EyeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1196
|
+
/**
|
|
1197
|
+
* @description Eyedropper 2
|
|
1198
|
+
* @preview 
|
|
1199
|
+
* @added v4.8.0
|
|
1200
|
+
*/
|
|
1201
|
+
export declare const EyedropperColorAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1202
|
+
/**
|
|
1203
|
+
* @description Eyedropper 2
|
|
1204
|
+
* @preview 
|
|
1205
|
+
* @added v4.8.0
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const EyedropperColorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1208
|
+
/**
|
|
1209
|
+
* @description Color
|
|
1210
|
+
* @preview 
|
|
1211
|
+
* @added v4.8.0
|
|
1212
|
+
*/
|
|
1213
|
+
export declare const EyedropperIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1214
|
+
/**
|
|
1215
|
+
* @description Meta, Social Media, Mark Zuckerburg, Messenger
|
|
1216
|
+
* @preview 
|
|
1217
|
+
* @added v4.8.0
|
|
1218
|
+
*/
|
|
1219
|
+
export declare const FacebookIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1220
|
+
/**
|
|
1221
|
+
* @description
|
|
1222
|
+
* @preview 
|
|
1223
|
+
* @added v4.8.0
|
|
1224
|
+
*/
|
|
1225
|
+
export declare const FastForwardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1226
|
+
/**
|
|
1227
|
+
* @description Design, Dylan Field, Sketch, Icons, Prototype, Prototyping, Adobe
|
|
1228
|
+
* @preview 
|
|
1229
|
+
* @added v4.8.0
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const FigmaIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1232
|
+
/**
|
|
1233
|
+
* @description
|
|
1234
|
+
* @preview 
|
|
1235
|
+
* @added v4.8.0
|
|
1236
|
+
*/
|
|
1237
|
+
export declare const FileAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1238
|
+
/**
|
|
1239
|
+
* @description Copy, Duplicate
|
|
1240
|
+
* @preview 
|
|
1241
|
+
* @added v4.11.2
|
|
1242
|
+
*/
|
|
1243
|
+
export declare const FileMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1244
|
+
/**
|
|
1245
|
+
* @description
|
|
1246
|
+
* @preview 
|
|
1247
|
+
* @added v4.8.0
|
|
1248
|
+
*/
|
|
1249
|
+
export declare const FileSyncIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1250
|
+
/**
|
|
1251
|
+
* @description
|
|
1252
|
+
* @preview 
|
|
1253
|
+
* @added v4.8.0
|
|
1254
|
+
*/
|
|
1255
|
+
export declare const FileIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1256
|
+
/**
|
|
1257
|
+
* @description Funnel
|
|
1258
|
+
* @preview 
|
|
1259
|
+
* @added v4.8.0
|
|
1260
|
+
*/
|
|
1261
|
+
export declare const Filter2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1262
|
+
/**
|
|
1263
|
+
* @description
|
|
1264
|
+
* @preview 
|
|
1265
|
+
* @added v4.8.0
|
|
1266
|
+
*/
|
|
1267
|
+
export declare const FilterCancel2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1268
|
+
/**
|
|
1269
|
+
* @description
|
|
1270
|
+
* @preview 
|
|
1271
|
+
* @added v4.8.0
|
|
1272
|
+
*/
|
|
1273
|
+
export declare const FilterCancelIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1274
|
+
/**
|
|
1275
|
+
* @description
|
|
1276
|
+
* @preview 
|
|
1277
|
+
* @added v4.8.0
|
|
1278
|
+
*/
|
|
1279
|
+
export declare const FilterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1280
|
+
/**
|
|
1281
|
+
* @description Report, Checkpoint, Flagged, Font Awesome, Curved, Waving, Wave
|
|
1282
|
+
* @preview 
|
|
1283
|
+
* @added v4.11.0
|
|
1284
|
+
*/
|
|
1285
|
+
export declare const Flag2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1286
|
+
/**
|
|
1287
|
+
* @description Report, Checkpoint, Flagged, Font Awesome
|
|
1288
|
+
* @preview 
|
|
1289
|
+
* @added v4.8.0
|
|
1290
|
+
* @updated v4.10.0
|
|
1291
|
+
*/
|
|
1292
|
+
export declare const FlagIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1293
|
+
/**
|
|
1294
|
+
* @description Torch, Light
|
|
1295
|
+
* @preview 
|
|
1296
|
+
* @added v4.8.0
|
|
1297
|
+
*/
|
|
1298
|
+
export declare const FlashlightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1299
|
+
/**
|
|
1300
|
+
* @description Folding Phone, Z Fold, Dual Screen
|
|
1301
|
+
* @preview 
|
|
1302
|
+
* @added v4.8.0
|
|
1303
|
+
*/
|
|
1304
|
+
export declare const FoldableHorizontalHalfIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1305
|
+
/**
|
|
1306
|
+
* @description Folding Phone, Z Fold, Dual Screen
|
|
1307
|
+
* @preview 
|
|
1308
|
+
* @added v4.8.0
|
|
1309
|
+
*/
|
|
1310
|
+
export declare const FoldableHorizontalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1311
|
+
/**
|
|
1312
|
+
* @description Folding Phone, Z Flip, Dual Screen
|
|
1313
|
+
* @preview 
|
|
1314
|
+
* @added v4.8.0
|
|
1315
|
+
*/
|
|
1316
|
+
export declare const FoldableVerticalHalfIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1317
|
+
/**
|
|
1318
|
+
* @description Folding Phone, Z Flip, Dual Screen
|
|
1319
|
+
* @preview 
|
|
1320
|
+
* @added v4.8.0
|
|
1321
|
+
*/
|
|
1322
|
+
export declare const FoldableVerticalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1323
|
+
/**
|
|
1324
|
+
* @description
|
|
1325
|
+
* @preview 
|
|
1326
|
+
* @added v4.8.0
|
|
1327
|
+
*/
|
|
1328
|
+
export declare const FolderAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1329
|
+
/**
|
|
1330
|
+
* @description Folders
|
|
1331
|
+
* @preview 
|
|
1332
|
+
* @added v4.11.2
|
|
1333
|
+
*/
|
|
1334
|
+
export declare const FolderMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1335
|
+
/**
|
|
1336
|
+
* @description
|
|
1337
|
+
* @preview 
|
|
1338
|
+
* @added v4.8.0
|
|
1339
|
+
*/
|
|
1340
|
+
export declare const FolderOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1341
|
+
/**
|
|
1342
|
+
* @description
|
|
1343
|
+
* @preview 
|
|
1344
|
+
* @added v4.8.0
|
|
1345
|
+
*/
|
|
1346
|
+
export declare const FolderIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1347
|
+
/**
|
|
1348
|
+
* @description
|
|
1349
|
+
* @preview 
|
|
1350
|
+
* @added v4.8.0
|
|
1351
|
+
*/
|
|
1352
|
+
export declare const FullScreenMaximizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1353
|
+
/**
|
|
1354
|
+
* @description
|
|
1355
|
+
* @preview 
|
|
1356
|
+
* @added v4.8.0
|
|
1357
|
+
*/
|
|
1358
|
+
export declare const FullScreenMinimizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1359
|
+
/**
|
|
1360
|
+
* @description Controller, Xbox, PlayStation, Arcade, Gaming, Steam
|
|
1361
|
+
* @preview 
|
|
1362
|
+
* @added v4.8.0
|
|
1363
|
+
*/
|
|
1364
|
+
export declare const GameIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1365
|
+
/**
|
|
1366
|
+
* @description Present
|
|
1367
|
+
* @preview 
|
|
1368
|
+
* @added v4.8.0
|
|
1369
|
+
*/
|
|
1370
|
+
export declare const GiftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1371
|
+
/**
|
|
1372
|
+
* @description
|
|
1373
|
+
* @preview 
|
|
1374
|
+
* @added v4.8.0
|
|
1375
|
+
*/
|
|
1376
|
+
export declare const GitCommitIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1377
|
+
/**
|
|
1378
|
+
* @description Open Source, Code, Microsoft, Git
|
|
1379
|
+
* @preview 
|
|
1380
|
+
* @added v4.8.0
|
|
1381
|
+
*/
|
|
1382
|
+
export declare const GithubIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1383
|
+
/**
|
|
1384
|
+
* @description Open Source
|
|
1385
|
+
* @preview 
|
|
1386
|
+
* @added v4.11.0
|
|
1387
|
+
*/
|
|
1388
|
+
export declare const GitlabIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1389
|
+
/**
|
|
1390
|
+
* @description
|
|
1391
|
+
* @preview 
|
|
1392
|
+
* @added v4.8.0
|
|
1393
|
+
*/
|
|
1394
|
+
export declare const GlobeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1395
|
+
/**
|
|
1396
|
+
* @description Google Color, Pixel, Sundar Pichai, Search, Android
|
|
1397
|
+
* @preview 
|
|
1398
|
+
* @added v4.8.0
|
|
1399
|
+
*/
|
|
1400
|
+
export declare const Google2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1401
|
+
/**
|
|
1402
|
+
* @description Browser, Chromium, Microsoft, MS Edge
|
|
1403
|
+
* @preview 
|
|
1404
|
+
* @added v4.8.0
|
|
1405
|
+
*/
|
|
1406
|
+
export declare const GoogleChromeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1407
|
+
/**
|
|
1408
|
+
* @description App Store, Android, Google, Google Play Store
|
|
1409
|
+
* @preview 
|
|
1410
|
+
* @added v4.8.0
|
|
1411
|
+
*/
|
|
1412
|
+
export declare const GooglePlayIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1413
|
+
/**
|
|
1414
|
+
* @description Pixel, Sundar Pichai, Search, Android
|
|
1415
|
+
* @preview 
|
|
1416
|
+
* @added v4.8.0
|
|
1417
|
+
*/
|
|
1418
|
+
export declare const GoogleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1419
|
+
/**
|
|
1420
|
+
* @description Stocks, Data
|
|
1421
|
+
* @preview 
|
|
1422
|
+
* @added v4.8.0
|
|
1423
|
+
* @updated v4.11.0
|
|
1424
|
+
*/
|
|
1425
|
+
export declare const GraphIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1426
|
+
/**
|
|
1427
|
+
* @description
|
|
1428
|
+
* @preview 
|
|
1429
|
+
* @added v4.8.0
|
|
1430
|
+
*/
|
|
1431
|
+
export declare const GridDotsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1432
|
+
/**
|
|
1433
|
+
* @description
|
|
1434
|
+
* @preview 
|
|
1435
|
+
* @added v4.8.0
|
|
1436
|
+
*/
|
|
1437
|
+
export declare const GridIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1438
|
+
/**
|
|
1439
|
+
* @description
|
|
1440
|
+
* @preview 
|
|
1441
|
+
* @added v4.8.0
|
|
1442
|
+
*/
|
|
1443
|
+
export declare const HamburgerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1444
|
+
/**
|
|
1445
|
+
* @description
|
|
1446
|
+
* @preview 
|
|
1447
|
+
* @added v4.8.0
|
|
1448
|
+
*/
|
|
1449
|
+
export declare const HandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1450
|
+
/**
|
|
1451
|
+
* @description Disk, SSD, HDD, Macintosh HD
|
|
1452
|
+
* @preview 
|
|
1453
|
+
* @added v4.8.0
|
|
1454
|
+
*/
|
|
1455
|
+
export declare const HardDriveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1456
|
+
/**
|
|
1457
|
+
* @description Hashtag, Tag, Category, Number, Count, Pound
|
|
1458
|
+
* @preview 
|
|
1459
|
+
* @added v4.8.0
|
|
1460
|
+
*/
|
|
1461
|
+
export declare const HashIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1462
|
+
/**
|
|
1463
|
+
* @description Education, Diplomat, Student, Learning
|
|
1464
|
+
* @preview 
|
|
1465
|
+
* @added v4.8.0
|
|
1466
|
+
*/
|
|
1467
|
+
export declare const HatGraduationIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1468
|
+
/**
|
|
1469
|
+
* @description Audio
|
|
1470
|
+
* @preview 
|
|
1471
|
+
* @added v4.11.0
|
|
1472
|
+
*/
|
|
1473
|
+
export declare const HeadphonesOffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1474
|
+
/**
|
|
1475
|
+
* @description
|
|
1476
|
+
* @preview 
|
|
1477
|
+
* @added v4.8.0
|
|
1478
|
+
*/
|
|
1479
|
+
export declare const HeadphonesIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1480
|
+
/**
|
|
1481
|
+
* @description Love
|
|
1482
|
+
* @preview 
|
|
1483
|
+
* @added v4.8.0
|
|
1484
|
+
*/
|
|
1485
|
+
export declare const HeartStylisticIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1486
|
+
/**
|
|
1487
|
+
* @description Love, Like, Favorite
|
|
1488
|
+
* @preview 
|
|
1489
|
+
* @added v4.8.0
|
|
1490
|
+
*/
|
|
1491
|
+
export declare const HeartIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1492
|
+
/**
|
|
1493
|
+
* @description
|
|
1494
|
+
* @preview 
|
|
1495
|
+
* @added v4.8.0
|
|
1496
|
+
*/
|
|
1497
|
+
export declare const HexagonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1498
|
+
/**
|
|
1499
|
+
* @description Marker
|
|
1500
|
+
* @preview 
|
|
1501
|
+
* @added v4.8.0
|
|
1502
|
+
*/
|
|
1503
|
+
export declare const HighlighterAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1504
|
+
/**
|
|
1505
|
+
* @description Marker
|
|
1506
|
+
* @preview 
|
|
1507
|
+
* @added v4.8.0
|
|
1508
|
+
*/
|
|
1509
|
+
export declare const HighlighterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1510
|
+
/**
|
|
1511
|
+
* @description
|
|
1512
|
+
* @preview 
|
|
1513
|
+
* @added v4.8.0
|
|
1514
|
+
*/
|
|
1515
|
+
export declare const HistoryIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1516
|
+
/**
|
|
1517
|
+
* @description House
|
|
1518
|
+
* @preview 
|
|
1519
|
+
* @added v4.8.0
|
|
1520
|
+
*/
|
|
1521
|
+
export declare const Home2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1522
|
+
/**
|
|
1523
|
+
* @description House
|
|
1524
|
+
* @preview 
|
|
1525
|
+
* @added v4.8.0
|
|
1526
|
+
*/
|
|
1527
|
+
export declare const HomeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1528
|
+
/**
|
|
1529
|
+
* @description Time, Timer
|
|
1530
|
+
* @preview 
|
|
1531
|
+
* @added v4.8.0
|
|
1532
|
+
*/
|
|
1533
|
+
export declare const HourglassIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1534
|
+
/**
|
|
1535
|
+
* @description HTML5, Markup, Programming, Web
|
|
1536
|
+
* @preview 
|
|
1537
|
+
* @added v4.8.0
|
|
1538
|
+
* @updated v4.11.2
|
|
1539
|
+
*/
|
|
1540
|
+
export declare const HtmlIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1541
|
+
/**
|
|
1542
|
+
* @description Number, Infinite
|
|
1543
|
+
* @preview 
|
|
1544
|
+
* @added v4.11.0
|
|
1545
|
+
*/
|
|
1546
|
+
export declare const InfinityIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1547
|
+
/**
|
|
1548
|
+
* @description Information
|
|
1549
|
+
* @preview 
|
|
1550
|
+
* @added v4.8.0
|
|
1551
|
+
*/
|
|
1552
|
+
export declare const InfoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1553
|
+
/**
|
|
1554
|
+
* @description Social
|
|
1555
|
+
* @preview 
|
|
1556
|
+
* @added v4.8.0
|
|
1557
|
+
*/
|
|
1558
|
+
export declare const InstagramIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1559
|
+
/**
|
|
1560
|
+
* @description Programming, Web, Electron, JS
|
|
1561
|
+
* @preview 
|
|
1562
|
+
* @added v4.8.0
|
|
1563
|
+
* @updated v4.11.0
|
|
1564
|
+
*/
|
|
1565
|
+
export declare const JavascriptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1566
|
+
/**
|
|
1567
|
+
* @description Mac, macOS, Meta, Super, Cmd
|
|
1568
|
+
* @preview 
|
|
1569
|
+
* @added v4.11.0
|
|
1570
|
+
*/
|
|
1571
|
+
export declare const KeyboardCommandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1572
|
+
/**
|
|
1573
|
+
* @description
|
|
1574
|
+
* @preview 
|
|
1575
|
+
* @added v4.8.0
|
|
1576
|
+
*/
|
|
1577
|
+
export declare const KeyboardShiftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1578
|
+
/**
|
|
1579
|
+
* @description Peripheral
|
|
1580
|
+
* @preview 
|
|
1581
|
+
* @added v4.8.0
|
|
1582
|
+
*/
|
|
1583
|
+
export declare const KeyboardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1584
|
+
/**
|
|
1585
|
+
* @description Computer, PC
|
|
1586
|
+
* @preview 
|
|
1587
|
+
* @added v4.8.0
|
|
1588
|
+
*/
|
|
1589
|
+
export declare const LaptopIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1590
|
+
/**
|
|
1591
|
+
* @description
|
|
1592
|
+
* @preview 
|
|
1593
|
+
* @added v4.8.0
|
|
1594
|
+
*/
|
|
1595
|
+
export declare const LayersIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1596
|
+
/**
|
|
1597
|
+
* @description
|
|
1598
|
+
* @preview 
|
|
1599
|
+
* @added v4.8.0
|
|
1600
|
+
*/
|
|
1601
|
+
export declare const LayoutIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1602
|
+
/**
|
|
1603
|
+
* @description Leaf 3
|
|
1604
|
+
* @preview 
|
|
1605
|
+
* @added v4.8.0
|
|
1606
|
+
*/
|
|
1607
|
+
export declare const LeafThreeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1608
|
+
/**
|
|
1609
|
+
* @description Leaf One
|
|
1610
|
+
* @preview 
|
|
1611
|
+
* @added v4.8.0
|
|
1612
|
+
*/
|
|
1613
|
+
export declare const LeafTwoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1614
|
+
/**
|
|
1615
|
+
* @description Leaf One, 1
|
|
1616
|
+
* @preview 
|
|
1617
|
+
* @added v4.8.0
|
|
1618
|
+
*/
|
|
1619
|
+
export declare const LeafIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1620
|
+
/**
|
|
1621
|
+
* @description Books, Bookshelf
|
|
1622
|
+
* @preview 
|
|
1623
|
+
* @added v4.8.0
|
|
1624
|
+
*/
|
|
1625
|
+
export declare const LibraryIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1626
|
+
/**
|
|
1627
|
+
* @description Tip
|
|
1628
|
+
* @preview 
|
|
1629
|
+
* @added v4.8.0
|
|
1630
|
+
*/
|
|
1631
|
+
export declare const LightbulbIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1632
|
+
/**
|
|
1633
|
+
* @description
|
|
1634
|
+
* @preview 
|
|
1635
|
+
* @added v4.8.0
|
|
1636
|
+
*/
|
|
1637
|
+
export declare const LineDiagonalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1638
|
+
/**
|
|
1639
|
+
* @description URL, Attachment
|
|
1640
|
+
* @preview 
|
|
1641
|
+
* @added v4.8.0
|
|
1642
|
+
*/
|
|
1643
|
+
export declare const LinkIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1644
|
+
/**
|
|
1645
|
+
* @description Tux, GNU/Linux, Penguin, Operating System, OS, Linus Torvalds, Open Source
|
|
1646
|
+
* @preview 
|
|
1647
|
+
* @added v4.10.0
|
|
1648
|
+
*/
|
|
1649
|
+
export declare const LinuxIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1650
|
+
/**
|
|
1651
|
+
* @description
|
|
1652
|
+
* @preview 
|
|
1653
|
+
* @added v4.8.0
|
|
1654
|
+
*/
|
|
1655
|
+
export declare const LocationIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1656
|
+
/**
|
|
1657
|
+
* @description Unlock, Unsafe
|
|
1658
|
+
* @preview 
|
|
1659
|
+
* @added v4.8.0
|
|
1660
|
+
*/
|
|
1661
|
+
export declare const LockOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1662
|
+
/**
|
|
1663
|
+
* @description Safe, Secure, Private, Privacy
|
|
1664
|
+
* @preview 
|
|
1665
|
+
* @added v4.8.0
|
|
1666
|
+
*/
|
|
1667
|
+
export declare const LockIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1668
|
+
/**
|
|
1669
|
+
* @description Gmail, Outlook, Yahoo, Inbox, Unread, Envelope Open
|
|
1670
|
+
* @preview 
|
|
1671
|
+
* @added v4.8.0
|
|
1672
|
+
*/
|
|
1673
|
+
export declare const MailOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1674
|
+
/**
|
|
1675
|
+
* @description Gmail, Outlook, Yahoo, Inbox, Unread, Envelope
|
|
1676
|
+
* @preview 
|
|
1677
|
+
* @added v4.8.0
|
|
1678
|
+
*/
|
|
1679
|
+
export declare const MailIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1680
|
+
/**
|
|
1681
|
+
* @description
|
|
1682
|
+
* @preview 
|
|
1683
|
+
* @added v4.8.0
|
|
1684
|
+
*/
|
|
1685
|
+
export declare const MapIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1686
|
+
/**
|
|
1687
|
+
* @description
|
|
1688
|
+
* @preview 
|
|
1689
|
+
* @added v4.8.0
|
|
1690
|
+
*/
|
|
1691
|
+
export declare const MaskIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1692
|
+
/**
|
|
1693
|
+
* @description Operations, Addition, Subtraction, Multiplication, Division
|
|
1694
|
+
* @preview 
|
|
1695
|
+
* @added v4.11.0
|
|
1696
|
+
*/
|
|
1697
|
+
export declare const MathIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1698
|
+
/**
|
|
1699
|
+
* @description Announcement
|
|
1700
|
+
* @preview 
|
|
1701
|
+
* @added v4.8.0
|
|
1702
|
+
*/
|
|
1703
|
+
export declare const MegaphoneLoudIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1704
|
+
/**
|
|
1705
|
+
* @description Announcement
|
|
1706
|
+
* @preview 
|
|
1707
|
+
* @added v4.8.0
|
|
1708
|
+
*/
|
|
1709
|
+
export declare const MegaphoneIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1710
|
+
/**
|
|
1711
|
+
* @description @, Tag, @mention, At
|
|
1712
|
+
* @preview 
|
|
1713
|
+
* @added v4.8.0
|
|
1714
|
+
*/
|
|
1715
|
+
export declare const MentionIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1716
|
+
/**
|
|
1717
|
+
* @description
|
|
1718
|
+
* @preview 
|
|
1719
|
+
* @added v4.8.0
|
|
1720
|
+
*/
|
|
1721
|
+
export declare const MenuIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1722
|
+
/**
|
|
1723
|
+
* @description Mute
|
|
1724
|
+
* @preview 
|
|
1725
|
+
* @added v4.8.0
|
|
1726
|
+
* @updated v4.11.0
|
|
1727
|
+
*/
|
|
1728
|
+
export declare const MicrophoneOffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1729
|
+
/**
|
|
1730
|
+
* @description Unmute, Speak
|
|
1731
|
+
* @preview 
|
|
1732
|
+
* @added v4.8.0
|
|
1733
|
+
* @updated v4.11.0
|
|
1734
|
+
*/
|
|
1735
|
+
export declare const MicrophoneIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1736
|
+
/**
|
|
1737
|
+
* @description Browser, Chromium, Microsoft, MS Edge
|
|
1738
|
+
* @preview 
|
|
1739
|
+
* @added v4.8.0
|
|
1740
|
+
*/
|
|
1741
|
+
export declare const MicrosoftEdgeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1742
|
+
/**
|
|
1743
|
+
* @description Windows, Win11, Windows 11, Satya Nadella, Steve Ballmer, Bill Gates
|
|
1744
|
+
* @preview 
|
|
1745
|
+
* @added v4.8.0
|
|
1746
|
+
*/
|
|
1747
|
+
export declare const MicrosoftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1748
|
+
/**
|
|
1749
|
+
* @description Crescent, Dark, Dark Mode, Dark Theme
|
|
1750
|
+
* @preview 
|
|
1751
|
+
* @added v4.8.0
|
|
1752
|
+
*/
|
|
1753
|
+
export declare const MoonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1754
|
+
/**
|
|
1755
|
+
* @description Kebab
|
|
1756
|
+
* @preview 
|
|
1757
|
+
* @added v4.8.0
|
|
1758
|
+
*/
|
|
1759
|
+
export declare const MoreVerticalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1760
|
+
/**
|
|
1761
|
+
* @description Kebab
|
|
1762
|
+
* @preview 
|
|
1763
|
+
* @added v4.8.0
|
|
1764
|
+
*/
|
|
1765
|
+
export declare const MoreIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1766
|
+
/**
|
|
1767
|
+
* @description Computer Board, Chip, Components, Transistor, Silicon, PC, CPU
|
|
1768
|
+
* @preview 
|
|
1769
|
+
* @added v4.8.0
|
|
1770
|
+
*/
|
|
1771
|
+
export declare const MotherboardIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1772
|
+
/**
|
|
1773
|
+
* @description Video, Film
|
|
1774
|
+
* @preview 
|
|
1775
|
+
* @added v4.8.0
|
|
1776
|
+
*/
|
|
1777
|
+
export declare const MovieIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1778
|
+
/**
|
|
1779
|
+
* @description Song, Single
|
|
1780
|
+
* @preview 
|
|
1781
|
+
* @added v4.8.0
|
|
1782
|
+
*/
|
|
1783
|
+
export declare const MusicNote2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1784
|
+
/**
|
|
1785
|
+
* @description Song, Double
|
|
1786
|
+
* @preview 
|
|
1787
|
+
* @added v4.8.0
|
|
1788
|
+
*/
|
|
1789
|
+
export declare const MusicNoteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1790
|
+
/**
|
|
1791
|
+
* @description
|
|
1792
|
+
* @preview 
|
|
1793
|
+
* @added v4.8.0
|
|
1794
|
+
* @updated v4.11.2
|
|
1795
|
+
*/
|
|
1796
|
+
export declare const NarratorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1797
|
+
/**
|
|
1798
|
+
* @description Node Package Manager, JavaScript, JS, Node.js
|
|
1799
|
+
* @preview 
|
|
1800
|
+
* @added v4.10.0
|
|
1801
|
+
*/
|
|
1802
|
+
export declare const NodejsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1803
|
+
/**
|
|
1804
|
+
* @description
|
|
1805
|
+
* @preview 
|
|
1806
|
+
* @added v4.8.0
|
|
1807
|
+
*/
|
|
1808
|
+
export declare const NoteAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1809
|
+
/**
|
|
1810
|
+
* @description
|
|
1811
|
+
* @preview 
|
|
1812
|
+
* @added v4.8.0
|
|
1813
|
+
*/
|
|
1814
|
+
export declare const NoteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1815
|
+
/**
|
|
1816
|
+
* @description Node Package Manager, JavaScript, JS, Node.js
|
|
1817
|
+
* @preview 
|
|
1818
|
+
* @added v4.10.0
|
|
1819
|
+
*/
|
|
1820
|
+
export declare const NpmIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1821
|
+
/**
|
|
1822
|
+
* @description Stop, Sign
|
|
1823
|
+
* @preview 
|
|
1824
|
+
* @added v4.8.0
|
|
1825
|
+
* @updated v4.11.2
|
|
1826
|
+
*/
|
|
1827
|
+
export declare const OctagonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1828
|
+
/**
|
|
1829
|
+
* @description Open Source Initiative, OSI, Free Software, FOSS
|
|
1830
|
+
* @preview 
|
|
1831
|
+
* @added v4.10.0
|
|
1832
|
+
*/
|
|
1833
|
+
export declare const OpenSourceIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1834
|
+
/**
|
|
1835
|
+
* @description External Link, Box Arrow Top Right
|
|
1836
|
+
* @preview 
|
|
1837
|
+
* @added v4.8.0
|
|
1838
|
+
* @updated v4.11.0
|
|
1839
|
+
*/
|
|
1840
|
+
export declare const OpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1841
|
+
/**
|
|
1842
|
+
* @description
|
|
1843
|
+
* @preview 
|
|
1844
|
+
* @added v4.8.0
|
|
1845
|
+
*/
|
|
1846
|
+
export declare const PageMarginsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1847
|
+
/**
|
|
1848
|
+
* @description
|
|
1849
|
+
* @preview 
|
|
1850
|
+
* @added v4.8.0
|
|
1851
|
+
*/
|
|
1852
|
+
export declare const PaintBucketAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1853
|
+
/**
|
|
1854
|
+
* @description
|
|
1855
|
+
* @preview 
|
|
1856
|
+
* @added v4.8.0
|
|
1857
|
+
*/
|
|
1858
|
+
export declare const PaintBucketIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1859
|
+
/**
|
|
1860
|
+
* @description
|
|
1861
|
+
* @preview 
|
|
1862
|
+
* @added v4.8.0
|
|
1863
|
+
*/
|
|
1864
|
+
export declare const Paintbrush2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1865
|
+
/**
|
|
1866
|
+
* @description
|
|
1867
|
+
* @preview 
|
|
1868
|
+
* @added v4.8.0
|
|
1869
|
+
* @updated v4.11.2
|
|
1870
|
+
*/
|
|
1871
|
+
export declare const PaintbrushIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1872
|
+
/**
|
|
1873
|
+
* @description
|
|
1874
|
+
* @preview 
|
|
1875
|
+
* @added v4.11.2
|
|
1876
|
+
*/
|
|
1877
|
+
export declare const PanelBottomOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1878
|
+
/**
|
|
1879
|
+
* @description
|
|
1880
|
+
* @preview 
|
|
1881
|
+
* @added v4.11.2
|
|
1882
|
+
*/
|
|
1883
|
+
export declare const PanelBottomIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1884
|
+
/**
|
|
1885
|
+
* @description
|
|
1886
|
+
* @preview 
|
|
1887
|
+
* @added v4.8.0
|
|
1888
|
+
* @updated v4.11.2
|
|
1889
|
+
*/
|
|
1890
|
+
export declare const PanelLeftContractIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1891
|
+
/**
|
|
1892
|
+
* @description
|
|
1893
|
+
* @preview 
|
|
1894
|
+
* @added v4.8.0
|
|
1895
|
+
* @updated v4.11.2
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const PanelLeftExpandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1898
|
+
/**
|
|
1899
|
+
* @description
|
|
1900
|
+
* @preview 
|
|
1901
|
+
* @added v4.8.0
|
|
1902
|
+
*/
|
|
1903
|
+
export declare const PanelLeftOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1904
|
+
/**
|
|
1905
|
+
* @description
|
|
1906
|
+
* @preview 
|
|
1907
|
+
* @added v4.8.0
|
|
1908
|
+
* @updated v4.11.2
|
|
1909
|
+
*/
|
|
1910
|
+
export declare const PanelLeftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1911
|
+
/**
|
|
1912
|
+
* @description
|
|
1913
|
+
* @preview 
|
|
1914
|
+
* @added v4.8.0
|
|
1915
|
+
* @updated v4.11.2
|
|
1916
|
+
*/
|
|
1917
|
+
export declare const PanelRightContractIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1918
|
+
/**
|
|
1919
|
+
* @description
|
|
1920
|
+
* @preview 
|
|
1921
|
+
* @added v4.8.0
|
|
1922
|
+
* @updated v4.11.2
|
|
1923
|
+
*/
|
|
1924
|
+
export declare const PanelRightExpandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1925
|
+
/**
|
|
1926
|
+
* @description
|
|
1927
|
+
* @preview 
|
|
1928
|
+
* @added v4.8.0
|
|
1929
|
+
*/
|
|
1930
|
+
export declare const PanelRightOpenIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1931
|
+
/**
|
|
1932
|
+
* @description
|
|
1933
|
+
* @preview 
|
|
1934
|
+
* @added v4.8.0
|
|
1935
|
+
* @updated v4.11.2
|
|
1936
|
+
*/
|
|
1937
|
+
export declare const PanelRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1938
|
+
/**
|
|
1939
|
+
* @description Code
|
|
1940
|
+
* @preview 
|
|
1941
|
+
* @added v4.11.2
|
|
1942
|
+
*/
|
|
1943
|
+
export declare const ParenthesesIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1944
|
+
/**
|
|
1945
|
+
* @description Stop
|
|
1946
|
+
* @preview 
|
|
1947
|
+
* @added v4.8.0
|
|
1948
|
+
*/
|
|
1949
|
+
export declare const PauseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1950
|
+
/**
|
|
1951
|
+
* @description
|
|
1952
|
+
* @preview 
|
|
1953
|
+
* @added v4.8.0
|
|
1954
|
+
* @deprecated Use PDF instead
|
|
1955
|
+
*/
|
|
1956
|
+
export declare const Pdf2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1957
|
+
/**
|
|
1958
|
+
* @description
|
|
1959
|
+
* @preview 
|
|
1960
|
+
* @added v4.8.0
|
|
1961
|
+
* @updated v4.11.2
|
|
1962
|
+
*/
|
|
1963
|
+
export declare const PdfIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1964
|
+
/**
|
|
1965
|
+
* @description Write, Draw, Edit
|
|
1966
|
+
* @preview 
|
|
1967
|
+
* @added v4.8.0
|
|
1968
|
+
*/
|
|
1969
|
+
export declare const PencilIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1970
|
+
/**
|
|
1971
|
+
* @description
|
|
1972
|
+
* @preview 
|
|
1973
|
+
* @added v4.8.0
|
|
1974
|
+
*/
|
|
1975
|
+
export declare const PentagonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1976
|
+
/**
|
|
1977
|
+
* @description
|
|
1978
|
+
* @preview 
|
|
1979
|
+
* @added v4.8.0
|
|
1980
|
+
*/
|
|
1981
|
+
export declare const Person2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1982
|
+
/**
|
|
1983
|
+
* @description
|
|
1984
|
+
* @preview 
|
|
1985
|
+
* @added v4.8.0
|
|
1986
|
+
*/
|
|
1987
|
+
export declare const PersonAdd2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1988
|
+
/**
|
|
1989
|
+
* @description Account Add, User
|
|
1990
|
+
* @preview 
|
|
1991
|
+
* @added v4.8.0
|
|
1992
|
+
*/
|
|
1993
|
+
export declare const PersonAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
1994
|
+
/**
|
|
1995
|
+
* @description
|
|
1996
|
+
* @preview 
|
|
1997
|
+
* @added v4.8.0
|
|
1998
|
+
*/
|
|
1999
|
+
export declare const PersonCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2000
|
+
/**
|
|
2001
|
+
* @description Users, User Multiple
|
|
2002
|
+
* @preview 
|
|
2003
|
+
* @added v4.8.0
|
|
2004
|
+
* @updated v4.11.0
|
|
2005
|
+
*/
|
|
2006
|
+
export declare const PersonMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2007
|
+
/**
|
|
2008
|
+
* @description
|
|
2009
|
+
* @preview 
|
|
2010
|
+
* @added v4.8.0
|
|
2011
|
+
*/
|
|
2012
|
+
export declare const PersonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2013
|
+
/**
|
|
2014
|
+
* @description
|
|
2015
|
+
* @preview 
|
|
2016
|
+
* @added v4.8.0
|
|
2017
|
+
*/
|
|
2018
|
+
export declare const PhoneAcceptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2019
|
+
/**
|
|
2020
|
+
* @description
|
|
2021
|
+
* @preview 
|
|
2022
|
+
* @added v4.8.0
|
|
2023
|
+
*/
|
|
2024
|
+
export declare const PhoneHangUpIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2025
|
+
/**
|
|
2026
|
+
* @description iPhone, Samsung Galaxy, Mobile, Android, iOS, Smartphone
|
|
2027
|
+
* @preview 
|
|
2028
|
+
* @added v4.8.0
|
|
2029
|
+
*/
|
|
2030
|
+
export declare const PhoneIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2031
|
+
/**
|
|
2032
|
+
* @description Color Filter, Tint
|
|
2033
|
+
* @preview 
|
|
2034
|
+
* @added v4.8.0
|
|
2035
|
+
*/
|
|
2036
|
+
export declare const PhotoFilterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2037
|
+
/**
|
|
2038
|
+
* @description Images, Pictures, Collection, Gallery
|
|
2039
|
+
* @preview 
|
|
2040
|
+
* @added v4.11.2
|
|
2041
|
+
*/
|
|
2042
|
+
export declare const PhotoMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2043
|
+
/**
|
|
2044
|
+
* @description Image, Picture
|
|
2045
|
+
* @preview 
|
|
2046
|
+
* @added v4.8.0
|
|
2047
|
+
*/
|
|
2048
|
+
export declare const PhotoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2049
|
+
/**
|
|
2050
|
+
* @description
|
|
2051
|
+
* @preview 
|
|
2052
|
+
* @added v4.8.0
|
|
2053
|
+
*/
|
|
2054
|
+
export declare const PictureInPicture2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2055
|
+
/**
|
|
2056
|
+
* @description
|
|
2057
|
+
* @preview 
|
|
2058
|
+
* @added v4.8.0
|
|
2059
|
+
*/
|
|
2060
|
+
export declare const PictureInPictureEnterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2061
|
+
/**
|
|
2062
|
+
* @description
|
|
2063
|
+
* @preview 
|
|
2064
|
+
* @added v4.8.0
|
|
2065
|
+
*/
|
|
2066
|
+
export declare const PictureInPictureExitIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2067
|
+
/**
|
|
2068
|
+
* @description
|
|
2069
|
+
* @preview 
|
|
2070
|
+
* @added v4.8.0
|
|
2071
|
+
*/
|
|
2072
|
+
export declare const PictureInPictureIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2073
|
+
/**
|
|
2074
|
+
* @description Unpin
|
|
2075
|
+
* @preview 
|
|
2076
|
+
* @added v4.8.0
|
|
2077
|
+
*/
|
|
2078
|
+
export declare const PinOffIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2079
|
+
/**
|
|
2080
|
+
* @description
|
|
2081
|
+
* @preview 
|
|
2082
|
+
* @added v4.8.0
|
|
2083
|
+
*/
|
|
2084
|
+
export declare const PinIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2085
|
+
/**
|
|
2086
|
+
* @description
|
|
2087
|
+
* @preview 
|
|
2088
|
+
* @added v4.8.0
|
|
2089
|
+
*/
|
|
2090
|
+
export declare const PlayCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2091
|
+
/**
|
|
2092
|
+
* @description Start, Resume
|
|
2093
|
+
* @preview 
|
|
2094
|
+
* @added v4.8.0
|
|
2095
|
+
*/
|
|
2096
|
+
export declare const PlayIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2097
|
+
/**
|
|
2098
|
+
* @description
|
|
2099
|
+
* @preview 
|
|
2100
|
+
* @added v4.8.0
|
|
2101
|
+
*/
|
|
2102
|
+
export declare const PrinterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2103
|
+
/**
|
|
2104
|
+
* @description
|
|
2105
|
+
* @preview 
|
|
2106
|
+
* @added v4.8.0
|
|
2107
|
+
*/
|
|
2108
|
+
export declare const ProhibitedIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2109
|
+
/**
|
|
2110
|
+
* @description Programming
|
|
2111
|
+
* @preview 
|
|
2112
|
+
* @added v4.8.0
|
|
2113
|
+
* @updated v4.10.0
|
|
2114
|
+
*/
|
|
2115
|
+
export declare const PythonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2116
|
+
/**
|
|
2117
|
+
* @description
|
|
2118
|
+
* @preview 
|
|
2119
|
+
* @added v4.8.0
|
|
2120
|
+
*/
|
|
2121
|
+
export declare const QrCodeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2122
|
+
/**
|
|
2123
|
+
* @description Help, Support
|
|
2124
|
+
* @preview 
|
|
2125
|
+
* @added v4.8.0
|
|
2126
|
+
*/
|
|
2127
|
+
export declare const QuestionCircleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2128
|
+
/**
|
|
2129
|
+
* @description
|
|
2130
|
+
* @preview 
|
|
2131
|
+
* @added v4.8.0
|
|
2132
|
+
*/
|
|
2133
|
+
export declare const QuestionIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2134
|
+
/**
|
|
2135
|
+
* @description
|
|
2136
|
+
* @preview 
|
|
2137
|
+
* @added v4.8.0
|
|
2138
|
+
*/
|
|
2139
|
+
export declare const QuoteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2140
|
+
/**
|
|
2141
|
+
* @description Framework, JavaScript, Meta, Facebook
|
|
2142
|
+
* @preview 
|
|
2143
|
+
* @added v4.11.0
|
|
2144
|
+
*/
|
|
2145
|
+
export declare const ReactjsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2146
|
+
/**
|
|
2147
|
+
* @description Recording, Voice
|
|
2148
|
+
* @preview 
|
|
2149
|
+
* @added v4.10.0
|
|
2150
|
+
*/
|
|
2151
|
+
export declare const RecordStopIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2152
|
+
/**
|
|
2153
|
+
* @description Recording, Voice
|
|
2154
|
+
* @preview 
|
|
2155
|
+
* @added v4.10.0
|
|
2156
|
+
*/
|
|
2157
|
+
export declare const RecordIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2158
|
+
/**
|
|
2159
|
+
* @description
|
|
2160
|
+
* @preview 
|
|
2161
|
+
* @added v4.8.0
|
|
2162
|
+
*/
|
|
2163
|
+
export declare const RectangleWideIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2164
|
+
/**
|
|
2165
|
+
* @description RegExp, Text, Match
|
|
2166
|
+
* @preview 
|
|
2167
|
+
* @added v4.11.0
|
|
2168
|
+
*/
|
|
2169
|
+
export declare const RegularExpressionIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2170
|
+
/**
|
|
2171
|
+
* @description
|
|
2172
|
+
* @preview 
|
|
2173
|
+
* @added v4.8.0
|
|
2174
|
+
*/
|
|
2175
|
+
export declare const ReverseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2176
|
+
/**
|
|
2177
|
+
* @description Diamond
|
|
2178
|
+
* @preview 
|
|
2179
|
+
* @added v4.8.0
|
|
2180
|
+
*/
|
|
2181
|
+
export declare const RhombusIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2182
|
+
/**
|
|
2183
|
+
* @description
|
|
2184
|
+
* @preview 
|
|
2185
|
+
* @added v4.8.0
|
|
2186
|
+
*/
|
|
2187
|
+
export declare const RibbonStarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2188
|
+
/**
|
|
2189
|
+
* @description
|
|
2190
|
+
* @preview 
|
|
2191
|
+
* @added v4.8.0
|
|
2192
|
+
*/
|
|
2193
|
+
export declare const RibbonIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2194
|
+
/**
|
|
2195
|
+
* @description Gaming, Studio, Bloxy, Player
|
|
2196
|
+
* @preview 
|
|
2197
|
+
* @added v4.8.0
|
|
2198
|
+
*/
|
|
2199
|
+
export declare const RobloxIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2200
|
+
/**
|
|
2201
|
+
* @description Measure, Length, Meter, Foot, Metre, Feet, Yard
|
|
2202
|
+
* @preview 
|
|
2203
|
+
* @added v4.11.0
|
|
2204
|
+
*/
|
|
2205
|
+
export declare const RulerDiagonalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2206
|
+
/**
|
|
2207
|
+
* @description Measure, Length, Meter, Foot, Metre, Feet, Yard
|
|
2208
|
+
* @preview 
|
|
2209
|
+
* @added v4.8.0
|
|
2210
|
+
*/
|
|
2211
|
+
export declare const RulerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2212
|
+
/**
|
|
2213
|
+
* @description Floppy Disk
|
|
2214
|
+
* @preview 
|
|
2215
|
+
* @added v4.11.2
|
|
2216
|
+
*/
|
|
2217
|
+
export declare const SaveMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2218
|
+
/**
|
|
2219
|
+
* @description Floppy Disk
|
|
2220
|
+
* @preview 
|
|
2221
|
+
* @added v4.8.0
|
|
2222
|
+
* @updated v4.11.2
|
|
2223
|
+
*/
|
|
2224
|
+
export declare const SavePencilIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2225
|
+
/**
|
|
2226
|
+
* @description Floppy Disk
|
|
2227
|
+
* @preview 
|
|
2228
|
+
* @added v4.8.0
|
|
2229
|
+
*/
|
|
2230
|
+
export declare const SaveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2231
|
+
/**
|
|
2232
|
+
* @description Aspect Ratio
|
|
2233
|
+
* @preview 
|
|
2234
|
+
* @added v4.8.0
|
|
2235
|
+
*/
|
|
2236
|
+
export declare const ScreenSizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2237
|
+
/**
|
|
2238
|
+
* @description Macro
|
|
2239
|
+
* @preview 
|
|
2240
|
+
* @added v4.8.0
|
|
2241
|
+
*/
|
|
2242
|
+
export declare const Script2Icon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2243
|
+
/**
|
|
2244
|
+
* @description Macro
|
|
2245
|
+
* @preview 
|
|
2246
|
+
* @added v4.8.0
|
|
2247
|
+
*/
|
|
2248
|
+
export declare const ScriptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2249
|
+
/**
|
|
2250
|
+
* @description No Results, Clear Search
|
|
2251
|
+
* @preview 
|
|
2252
|
+
* @added v4.9.0
|
|
2253
|
+
* @updated v4.11.2
|
|
2254
|
+
*/
|
|
2255
|
+
export declare const SearchCancelIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2256
|
+
/**
|
|
2257
|
+
* @description Find, Look
|
|
2258
|
+
* @preview 
|
|
2259
|
+
* @added v4.8.0
|
|
2260
|
+
*/
|
|
2261
|
+
export declare const SearchIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2262
|
+
/**
|
|
2263
|
+
* @description
|
|
2264
|
+
* @preview 
|
|
2265
|
+
* @added v4.8.0
|
|
2266
|
+
*/
|
|
2267
|
+
export declare const SectionBreakIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2268
|
+
/**
|
|
2269
|
+
* @description
|
|
2270
|
+
* @preview 
|
|
2271
|
+
* @added v4.8.0
|
|
2272
|
+
*/
|
|
2273
|
+
export declare const SendIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2274
|
+
/**
|
|
2275
|
+
* @description Internet
|
|
2276
|
+
* @preview 
|
|
2277
|
+
* @added v4.11.0
|
|
2278
|
+
*/
|
|
2279
|
+
export declare const ServerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2280
|
+
/**
|
|
2281
|
+
* @description
|
|
2282
|
+
* @preview 
|
|
2283
|
+
* @added v4.8.0
|
|
2284
|
+
*/
|
|
2285
|
+
export declare const SettingsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2286
|
+
/**
|
|
2287
|
+
* @description
|
|
2288
|
+
* @preview 
|
|
2289
|
+
* @added v4.8.0
|
|
2290
|
+
*/
|
|
2291
|
+
export declare const ShapeDifferenceIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2292
|
+
/**
|
|
2293
|
+
* @description
|
|
2294
|
+
* @preview 
|
|
2295
|
+
* @added v4.8.0
|
|
2296
|
+
*/
|
|
2297
|
+
export declare const ShapeIntersectIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2298
|
+
/**
|
|
2299
|
+
* @description
|
|
2300
|
+
* @preview 
|
|
2301
|
+
* @added v4.8.0
|
|
2302
|
+
*/
|
|
2303
|
+
export declare const ShapeSubtractIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2304
|
+
/**
|
|
2305
|
+
* @description
|
|
2306
|
+
* @preview 
|
|
2307
|
+
* @added v4.8.0
|
|
2308
|
+
*/
|
|
2309
|
+
export declare const ShapeUnionIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2310
|
+
/**
|
|
2311
|
+
* @description
|
|
2312
|
+
* @preview 
|
|
2313
|
+
* @added v4.8.0
|
|
2314
|
+
*/
|
|
2315
|
+
export declare const ShieldCancelIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2316
|
+
/**
|
|
2317
|
+
* @description
|
|
2318
|
+
* @preview 
|
|
2319
|
+
* @added v4.8.0
|
|
2320
|
+
*/
|
|
2321
|
+
export declare const ShieldCheckmarkIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2322
|
+
/**
|
|
2323
|
+
* @description
|
|
2324
|
+
* @preview 
|
|
2325
|
+
* @added v4.8.0
|
|
2326
|
+
*/
|
|
2327
|
+
export declare const ShieldKeyholeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2328
|
+
/**
|
|
2329
|
+
* @description Security
|
|
2330
|
+
* @preview 
|
|
2331
|
+
* @added v4.8.0
|
|
2332
|
+
*/
|
|
2333
|
+
export declare const ShieldIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2334
|
+
/**
|
|
2335
|
+
* @description Skeleton, Emoji, Bones, Head, Spooky, Poison, Pirate, Kill, Blood, Death, Die
|
|
2336
|
+
* @preview 
|
|
2337
|
+
* @added v4.8.0
|
|
2338
|
+
*/
|
|
2339
|
+
export declare const SkullIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2340
|
+
/**
|
|
2341
|
+
* @description Command
|
|
2342
|
+
* @preview 
|
|
2343
|
+
* @added v4.11.0
|
|
2344
|
+
*/
|
|
2345
|
+
export declare const SlashSquareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2346
|
+
/**
|
|
2347
|
+
* @description Audio, EQ, Waveform, mp3
|
|
2348
|
+
* @preview 
|
|
2349
|
+
* @added v4.8.0
|
|
2350
|
+
*/
|
|
2351
|
+
export declare const SoundwaveIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2352
|
+
/**
|
|
2353
|
+
* @description
|
|
2354
|
+
* @preview 
|
|
2355
|
+
* @added v4.8.0
|
|
2356
|
+
*/
|
|
2357
|
+
export declare const SpacebarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2358
|
+
/**
|
|
2359
|
+
* @description Flare, Gemini
|
|
2360
|
+
* @preview 
|
|
2361
|
+
* @added v4.8.0
|
|
2362
|
+
*/
|
|
2363
|
+
export declare const SparkleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2364
|
+
/**
|
|
2365
|
+
* @description Loading
|
|
2366
|
+
* @preview 
|
|
2367
|
+
* @added v4.8.0
|
|
2368
|
+
*/
|
|
2369
|
+
export declare const SpinnerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2370
|
+
/**
|
|
2371
|
+
* @description
|
|
2372
|
+
* @preview 
|
|
2373
|
+
* @added v4.11.2
|
|
2374
|
+
*/
|
|
2375
|
+
export declare const SplitHorizontalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2376
|
+
/**
|
|
2377
|
+
* @description
|
|
2378
|
+
* @preview 
|
|
2379
|
+
* @added v4.11.2
|
|
2380
|
+
*/
|
|
2381
|
+
export declare const SplitVerticalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2382
|
+
/**
|
|
2383
|
+
* @description
|
|
2384
|
+
* @preview 
|
|
2385
|
+
* @added v4.8.0
|
|
2386
|
+
*/
|
|
2387
|
+
export declare const SquareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2388
|
+
/**
|
|
2389
|
+
* @description Favourite, Favorite
|
|
2390
|
+
* @preview 
|
|
2391
|
+
* @added v4.8.0
|
|
2392
|
+
*/
|
|
2393
|
+
export declare const StarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2394
|
+
/**
|
|
2395
|
+
* @description Line Thickness, Border, Weight, Outline
|
|
2396
|
+
* @preview 
|
|
2397
|
+
* @added v4.8.0
|
|
2398
|
+
*/
|
|
2399
|
+
export declare const StrokeThicknessIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2400
|
+
/**
|
|
2401
|
+
* @description Minus, Minimize, Line Horizontal, Subtract
|
|
2402
|
+
* @preview 
|
|
2403
|
+
* @added v4.8.0
|
|
2404
|
+
*/
|
|
2405
|
+
export declare const SubtractIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2406
|
+
/**
|
|
2407
|
+
* @description SvelteKit, Framework, JavaScript, Compiler
|
|
2408
|
+
* @preview 
|
|
2409
|
+
* @added v4.10.0
|
|
2410
|
+
* @updated v4.11.0
|
|
2411
|
+
*/
|
|
2412
|
+
export declare const SvelteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2413
|
+
/**
|
|
2414
|
+
* @description
|
|
2415
|
+
* @preview 
|
|
2416
|
+
* @added v4.8.0
|
|
2417
|
+
*/
|
|
2418
|
+
export declare const SymbolsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2419
|
+
/**
|
|
2420
|
+
* @description
|
|
2421
|
+
* @preview 
|
|
2422
|
+
* @added v4.8.0
|
|
2423
|
+
*/
|
|
2424
|
+
export declare const TableSimpleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2425
|
+
/**
|
|
2426
|
+
* @description
|
|
2427
|
+
* @preview 
|
|
2428
|
+
* @added v4.8.0
|
|
2429
|
+
*/
|
|
2430
|
+
export declare const TableIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2431
|
+
/**
|
|
2432
|
+
* @description iPad
|
|
2433
|
+
* @preview 
|
|
2434
|
+
* @added v4.8.0
|
|
2435
|
+
*/
|
|
2436
|
+
export declare const TabletIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2437
|
+
/**
|
|
2438
|
+
* @description Label
|
|
2439
|
+
* @preview 
|
|
2440
|
+
* @added v4.8.0
|
|
2441
|
+
*/
|
|
2442
|
+
export declare const TagAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2443
|
+
/**
|
|
2444
|
+
* @description Tags
|
|
2445
|
+
* @preview 
|
|
2446
|
+
* @added v4.8.0
|
|
2447
|
+
* @updated v4.11.0
|
|
2448
|
+
*/
|
|
2449
|
+
export declare const TagMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2450
|
+
/**
|
|
2451
|
+
* @description Label
|
|
2452
|
+
* @preview 
|
|
2453
|
+
* @added v4.8.0
|
|
2454
|
+
*/
|
|
2455
|
+
export declare const TagIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2456
|
+
/**
|
|
2457
|
+
* @description
|
|
2458
|
+
* @preview 
|
|
2459
|
+
* @added v4.8.0
|
|
2460
|
+
*/
|
|
2461
|
+
export declare const TaskListIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2462
|
+
/**
|
|
2463
|
+
* @description Cmd, Command Prompt, Bash, Powershell, Ps
|
|
2464
|
+
* @preview 
|
|
2465
|
+
* @added v4.8.0
|
|
2466
|
+
*/
|
|
2467
|
+
export declare const TerminalIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2468
|
+
/**
|
|
2469
|
+
* @description
|
|
2470
|
+
* @preview 
|
|
2471
|
+
* @added v4.8.0
|
|
2472
|
+
* @updated v4.11.2
|
|
2473
|
+
*/
|
|
2474
|
+
export declare const TextAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2475
|
+
/**
|
|
2476
|
+
* @description
|
|
2477
|
+
* @preview 
|
|
2478
|
+
* @added v4.8.0
|
|
2479
|
+
*/
|
|
2480
|
+
export declare const TextAlignCenterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2481
|
+
/**
|
|
2482
|
+
* @description
|
|
2483
|
+
* @preview 
|
|
2484
|
+
* @added v4.8.0
|
|
2485
|
+
*/
|
|
2486
|
+
export declare const TextAlignJustifyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2487
|
+
/**
|
|
2488
|
+
* @description
|
|
2489
|
+
* @preview 
|
|
2490
|
+
* @added v4.8.0
|
|
2491
|
+
*/
|
|
2492
|
+
export declare const TextAlignLeftIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2493
|
+
/**
|
|
2494
|
+
* @description
|
|
2495
|
+
* @preview 
|
|
2496
|
+
* @added v4.8.0
|
|
2497
|
+
*/
|
|
2498
|
+
export declare const TextAlignRightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2499
|
+
/**
|
|
2500
|
+
* @description
|
|
2501
|
+
* @preview 
|
|
2502
|
+
* @added v4.8.0
|
|
2503
|
+
* @updated v4.11.2
|
|
2504
|
+
*/
|
|
2505
|
+
export declare const TextBoldIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2506
|
+
/**
|
|
2507
|
+
* @description
|
|
2508
|
+
* @preview 
|
|
2509
|
+
* @added v4.8.0
|
|
2510
|
+
*/
|
|
2511
|
+
export declare const TextBulletListSquareAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2512
|
+
/**
|
|
2513
|
+
* @description
|
|
2514
|
+
* @preview 
|
|
2515
|
+
* @added v4.8.0
|
|
2516
|
+
*/
|
|
2517
|
+
export declare const TextBulletListSquareIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2518
|
+
/**
|
|
2519
|
+
* @description
|
|
2520
|
+
* @preview 
|
|
2521
|
+
* @added v4.8.0
|
|
2522
|
+
*/
|
|
2523
|
+
export declare const TextBulletListIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2524
|
+
/**
|
|
2525
|
+
* @description
|
|
2526
|
+
* @preview 
|
|
2527
|
+
* @added v4.8.0
|
|
2528
|
+
*/
|
|
2529
|
+
export declare const TextCaseLowercaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2530
|
+
/**
|
|
2531
|
+
* @description
|
|
2532
|
+
* @preview 
|
|
2533
|
+
* @added v4.8.0
|
|
2534
|
+
*/
|
|
2535
|
+
export declare const TextCaseTitleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2536
|
+
/**
|
|
2537
|
+
* @description
|
|
2538
|
+
* @preview 
|
|
2539
|
+
* @added v4.8.0
|
|
2540
|
+
*/
|
|
2541
|
+
export declare const TextCaseUppercaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2542
|
+
/**
|
|
2543
|
+
* @description
|
|
2544
|
+
* @preview 
|
|
2545
|
+
* @added v4.8.0
|
|
2546
|
+
*/
|
|
2547
|
+
export declare const TextClearFormattingIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2548
|
+
/**
|
|
2549
|
+
* @description
|
|
2550
|
+
* @preview 
|
|
2551
|
+
* @added v4.8.0
|
|
2552
|
+
*/
|
|
2553
|
+
export declare const TextCollapseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2554
|
+
/**
|
|
2555
|
+
* @description
|
|
2556
|
+
* @preview 
|
|
2557
|
+
* @added v4.8.0
|
|
2558
|
+
*/
|
|
2559
|
+
export declare const TextColorAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2560
|
+
/**
|
|
2561
|
+
* @description
|
|
2562
|
+
* @preview 
|
|
2563
|
+
* @added v4.8.0
|
|
2564
|
+
*/
|
|
2565
|
+
export declare const TextColorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2566
|
+
/**
|
|
2567
|
+
* @description Text edit, Text pencil
|
|
2568
|
+
* @preview 
|
|
2569
|
+
* @added v4.8.0
|
|
2570
|
+
*/
|
|
2571
|
+
export declare const TextEditStyleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2572
|
+
/**
|
|
2573
|
+
* @description
|
|
2574
|
+
* @preview 
|
|
2575
|
+
* @added v4.8.0
|
|
2576
|
+
*/
|
|
2577
|
+
export declare const TextEffectsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2578
|
+
/**
|
|
2579
|
+
* @description
|
|
2580
|
+
* @preview 
|
|
2581
|
+
* @added v4.8.0
|
|
2582
|
+
*/
|
|
2583
|
+
export declare const TextExpandIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2584
|
+
/**
|
|
2585
|
+
* @description
|
|
2586
|
+
* @preview 
|
|
2587
|
+
* @added v4.8.0
|
|
2588
|
+
*/
|
|
2589
|
+
export declare const TextFontSizeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2590
|
+
/**
|
|
2591
|
+
* @description
|
|
2592
|
+
* @preview 
|
|
2593
|
+
* @added v4.8.0
|
|
2594
|
+
*/
|
|
2595
|
+
export declare const TextFontIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2596
|
+
/**
|
|
2597
|
+
* @description
|
|
2598
|
+
* @preview 
|
|
2599
|
+
* @added v4.8.0
|
|
2600
|
+
*/
|
|
2601
|
+
export declare const TextFootnoteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2602
|
+
/**
|
|
2603
|
+
* @description
|
|
2604
|
+
* @preview 
|
|
2605
|
+
* @added v4.8.0
|
|
2606
|
+
*/
|
|
2607
|
+
export declare const TextHighlightColorAccentIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2608
|
+
/**
|
|
2609
|
+
* @description
|
|
2610
|
+
* @preview 
|
|
2611
|
+
* @added v4.8.0
|
|
2612
|
+
*/
|
|
2613
|
+
export declare const TextHighlightColorIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2614
|
+
/**
|
|
2615
|
+
* @description
|
|
2616
|
+
* @preview 
|
|
2617
|
+
* @added v4.8.0
|
|
2618
|
+
*/
|
|
2619
|
+
export declare const TextIndentDecreaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2620
|
+
/**
|
|
2621
|
+
* @description
|
|
2622
|
+
* @preview 
|
|
2623
|
+
* @added v4.8.0
|
|
2624
|
+
*/
|
|
2625
|
+
export declare const TextIndentIncreaseIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2626
|
+
/**
|
|
2627
|
+
* @description
|
|
2628
|
+
* @preview 
|
|
2629
|
+
* @added v4.8.0
|
|
2630
|
+
*/
|
|
2631
|
+
export declare const TextItalicIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2632
|
+
/**
|
|
2633
|
+
* @description
|
|
2634
|
+
* @preview 
|
|
2635
|
+
* @added v4.8.0
|
|
2636
|
+
*/
|
|
2637
|
+
export declare const TextLargeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2638
|
+
/**
|
|
2639
|
+
* @description
|
|
2640
|
+
* @preview 
|
|
2641
|
+
* @added v4.8.0
|
|
2642
|
+
*/
|
|
2643
|
+
export declare const TextLetterSpacingIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2644
|
+
/**
|
|
2645
|
+
* @description
|
|
2646
|
+
* @preview 
|
|
2647
|
+
* @added v4.8.0
|
|
2648
|
+
*/
|
|
2649
|
+
export declare const TextLineHeightIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2650
|
+
/**
|
|
2651
|
+
* @description
|
|
2652
|
+
* @preview 
|
|
2653
|
+
* @added v4.8.0
|
|
2654
|
+
*/
|
|
2655
|
+
export declare const TextLineSpacingIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2656
|
+
/**
|
|
2657
|
+
* @description
|
|
2658
|
+
* @preview 
|
|
2659
|
+
* @added v4.8.0
|
|
2660
|
+
*/
|
|
2661
|
+
export declare const TextNumberListIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2662
|
+
/**
|
|
2663
|
+
* @description
|
|
2664
|
+
* @preview 
|
|
2665
|
+
* @added v4.8.0
|
|
2666
|
+
*/
|
|
2667
|
+
export declare const TextPositionBottomIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2668
|
+
/**
|
|
2669
|
+
* @description
|
|
2670
|
+
* @preview 
|
|
2671
|
+
* @added v4.8.0
|
|
2672
|
+
*/
|
|
2673
|
+
export declare const TextPositionMiddleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2674
|
+
/**
|
|
2675
|
+
* @description
|
|
2676
|
+
* @preview 
|
|
2677
|
+
* @added v4.8.0
|
|
2678
|
+
*/
|
|
2679
|
+
export declare const TextPositionTopIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2680
|
+
/**
|
|
2681
|
+
* @description
|
|
2682
|
+
* @preview 
|
|
2683
|
+
* @added v4.8.0
|
|
2684
|
+
*/
|
|
2685
|
+
export declare const TextSmallIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2686
|
+
/**
|
|
2687
|
+
* @description
|
|
2688
|
+
* @preview 
|
|
2689
|
+
* @added v4.8.0
|
|
2690
|
+
*/
|
|
2691
|
+
export declare const TextStrikethroughIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2692
|
+
/**
|
|
2693
|
+
* @description
|
|
2694
|
+
* @preview 
|
|
2695
|
+
* @added v4.8.0
|
|
2696
|
+
* @updated v4.11.2
|
|
2697
|
+
*/
|
|
2698
|
+
export declare const TextSubscriptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2699
|
+
/**
|
|
2700
|
+
* @description
|
|
2701
|
+
* @preview 
|
|
2702
|
+
* @added v4.8.0
|
|
2703
|
+
* @updated v4.11.2
|
|
2704
|
+
*/
|
|
2705
|
+
export declare const TextSuperscriptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2706
|
+
/**
|
|
2707
|
+
* @description
|
|
2708
|
+
* @preview 
|
|
2709
|
+
* @added v4.8.0
|
|
2710
|
+
*/
|
|
2711
|
+
export declare const TextTypographyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2712
|
+
/**
|
|
2713
|
+
* @description
|
|
2714
|
+
* @preview 
|
|
2715
|
+
* @added v4.8.0
|
|
2716
|
+
*/
|
|
2717
|
+
export declare const TextUnderlineIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2718
|
+
/**
|
|
2719
|
+
* @description
|
|
2720
|
+
* @preview 
|
|
2721
|
+
* @added v4.8.0
|
|
2722
|
+
*/
|
|
2723
|
+
export declare const TextIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2724
|
+
/**
|
|
2725
|
+
* @description Dislike
|
|
2726
|
+
* @preview 
|
|
2727
|
+
* @added v4.8.0
|
|
2728
|
+
* @updated v4.11.2
|
|
2729
|
+
*/
|
|
2730
|
+
export declare const ThumbsDownIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2731
|
+
/**
|
|
2732
|
+
* @description Like
|
|
2733
|
+
* @preview 
|
|
2734
|
+
* @added v4.8.0
|
|
2735
|
+
* @updated v4.11.2
|
|
2736
|
+
*/
|
|
2737
|
+
export declare const ThumbsUpIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2738
|
+
/**
|
|
2739
|
+
* @description ByteDance, Now, Shorts, Social, Videos
|
|
2740
|
+
* @preview 
|
|
2741
|
+
* @added v4.8.0
|
|
2742
|
+
*/
|
|
2743
|
+
export declare const TiktokIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2744
|
+
/**
|
|
2745
|
+
* @description Stopwatch
|
|
2746
|
+
* @preview 
|
|
2747
|
+
* @added v4.8.0
|
|
2748
|
+
*/
|
|
2749
|
+
export declare const TimerIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2750
|
+
/**
|
|
2751
|
+
* @description Suitcase, Work
|
|
2752
|
+
* @preview 
|
|
2753
|
+
* @added v4.8.0
|
|
2754
|
+
*/
|
|
2755
|
+
export declare const ToolboxIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2756
|
+
/**
|
|
2757
|
+
* @description
|
|
2758
|
+
* @preview 
|
|
2759
|
+
* @added v4.8.0
|
|
2760
|
+
*/
|
|
2761
|
+
export declare const TriangleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2762
|
+
/**
|
|
2763
|
+
* @description Customize, Sliders, Controls, Settings, Options, Customise
|
|
2764
|
+
* @preview 
|
|
2765
|
+
* @added v4.8.0
|
|
2766
|
+
*/
|
|
2767
|
+
export declare const TuneIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2768
|
+
/**
|
|
2769
|
+
* @description Television
|
|
2770
|
+
* @preview 
|
|
2771
|
+
* @added v4.8.0
|
|
2772
|
+
*/
|
|
2773
|
+
export declare const TvIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2774
|
+
/**
|
|
2775
|
+
* @description Programming, Web, TS, Microsoft
|
|
2776
|
+
* @preview 
|
|
2777
|
+
* @added v4.11.0
|
|
2778
|
+
*/
|
|
2779
|
+
export declare const TypescriptIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2780
|
+
/**
|
|
2781
|
+
* @description Canonical, Linux, Mark Shuttleworth, Open Source
|
|
2782
|
+
* @preview 
|
|
2783
|
+
* @added v4.10.0
|
|
2784
|
+
*/
|
|
2785
|
+
export declare const UbuntuIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2786
|
+
/**
|
|
2787
|
+
* @description
|
|
2788
|
+
* @preview 
|
|
2789
|
+
* @added v4.8.0
|
|
2790
|
+
*/
|
|
2791
|
+
export declare const VehicleCarIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2792
|
+
/**
|
|
2793
|
+
* @description
|
|
2794
|
+
* @preview 
|
|
2795
|
+
* @added v4.8.0
|
|
2796
|
+
*/
|
|
2797
|
+
export declare const VideoClipIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2798
|
+
/**
|
|
2799
|
+
* @description
|
|
2800
|
+
* @preview 
|
|
2801
|
+
* @added v4.8.0
|
|
2802
|
+
*/
|
|
2803
|
+
export declare const VideoIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2804
|
+
/**
|
|
2805
|
+
* @description VSCode, VS Code, IDE, Text Editor, Microsoft
|
|
2806
|
+
* @preview 
|
|
2807
|
+
* @added v4.8.0
|
|
2808
|
+
*/
|
|
2809
|
+
export declare const VisualStudioCodeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2810
|
+
/**
|
|
2811
|
+
* @description Sound, Audio
|
|
2812
|
+
* @preview 
|
|
2813
|
+
* @added v4.8.0
|
|
2814
|
+
*/
|
|
2815
|
+
export declare const VolumeLowIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2816
|
+
/**
|
|
2817
|
+
* @description Sound, Audio
|
|
2818
|
+
* @preview 
|
|
2819
|
+
* @added v4.8.0
|
|
2820
|
+
*/
|
|
2821
|
+
export declare const VolumeMediumIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2822
|
+
/**
|
|
2823
|
+
* @description Sound, Audio
|
|
2824
|
+
* @preview 
|
|
2825
|
+
* @added v4.8.0
|
|
2826
|
+
*/
|
|
2827
|
+
export declare const VolumeMuteIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2828
|
+
/**
|
|
2829
|
+
* @description Sound, Audio
|
|
2830
|
+
* @preview 
|
|
2831
|
+
* @added v4.8.0
|
|
2832
|
+
*/
|
|
2833
|
+
export declare const VolumeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2834
|
+
/**
|
|
2835
|
+
* @description JavaScript, Framework, Open Source, Evan You
|
|
2836
|
+
* @preview 
|
|
2837
|
+
* @added v4.10.0
|
|
2838
|
+
*/
|
|
2839
|
+
export declare const VuejsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2840
|
+
/**
|
|
2841
|
+
* @description Apple Watch, Watch, Samsung Galaxy, Clock, Time, Smartwatch, Tracker
|
|
2842
|
+
* @preview 
|
|
2843
|
+
* @added v4.8.0
|
|
2844
|
+
*/
|
|
2845
|
+
export declare const WatchIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2846
|
+
/**
|
|
2847
|
+
* @description
|
|
2848
|
+
* @preview 
|
|
2849
|
+
* @added v4.8.0
|
|
2850
|
+
*/
|
|
2851
|
+
export declare const WeatherCloudyIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2852
|
+
/**
|
|
2853
|
+
* @description Module Bundler, JavaScript
|
|
2854
|
+
* @preview 
|
|
2855
|
+
* @added v4.10.0
|
|
2856
|
+
*/
|
|
2857
|
+
export declare const WebpackIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2858
|
+
/**
|
|
2859
|
+
* @description Internet
|
|
2860
|
+
* @preview 
|
|
2861
|
+
* @added v4.8.0
|
|
2862
|
+
*/
|
|
2863
|
+
export declare const WiFiIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2864
|
+
/**
|
|
2865
|
+
* @description New Window, Create, Open
|
|
2866
|
+
* @preview 
|
|
2867
|
+
* @added v4.11.2
|
|
2868
|
+
*/
|
|
2869
|
+
export declare const WindowAddIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2870
|
+
/**
|
|
2871
|
+
* @description
|
|
2872
|
+
* @preview 
|
|
2873
|
+
* @added v4.8.0
|
|
2874
|
+
* @updated v4.11.0
|
|
2875
|
+
*/
|
|
2876
|
+
export declare const WindowMultipleIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2877
|
+
/**
|
|
2878
|
+
* @description
|
|
2879
|
+
* @preview 
|
|
2880
|
+
* @added v4.8.0
|
|
2881
|
+
*/
|
|
2882
|
+
export declare const WindowIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2883
|
+
/**
|
|
2884
|
+
* @description Configure, Spanner, Options, Mechanism, Mechanic
|
|
2885
|
+
* @preview 
|
|
2886
|
+
* @added v4.8.0
|
|
2887
|
+
*/
|
|
2888
|
+
export declare const WrenchIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2889
|
+
/**
|
|
2890
|
+
* @description Twitter, X/Twitter, X Corp., Elon Musk, Bird, Tweet, Post, Social Media
|
|
2891
|
+
* @preview 
|
|
2892
|
+
* @added v4.8.0
|
|
2893
|
+
*/
|
|
2894
|
+
export declare const XTwitterIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2895
|
+
/**
|
|
2896
|
+
* @description YT Shorts, Watch, YouTube, Vertical, TikTok
|
|
2897
|
+
* @preview 
|
|
2898
|
+
* @added v4.8.0
|
|
2899
|
+
*/
|
|
2900
|
+
export declare const YoutubeShortsIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2901
|
+
/**
|
|
2902
|
+
* @description Social, Shorts, Watch, Videos
|
|
2903
|
+
* @preview 
|
|
2904
|
+
* @added v4.8.0
|
|
2905
|
+
*/
|
|
2906
|
+
export declare const YoutubeIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2907
|
+
/**
|
|
2908
|
+
* @description
|
|
2909
|
+
* @preview 
|
|
2910
|
+
* @added v4.8.0
|
|
2911
|
+
*/
|
|
2912
|
+
export declare const ZoomInIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2913
|
+
/**
|
|
2914
|
+
* @description
|
|
2915
|
+
* @preview 
|
|
2916
|
+
* @added v4.8.0
|
|
2917
|
+
*/
|
|
2918
|
+
export declare const ZoomOutIcon: import("react").ForwardRefExoticComponent<Omit<ProIconAttributes, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
|
|
2919
|
+
export type IconEnum<T extends string> = T extends `${infer Base}Icon` ? Base : T;
|
|
2920
|
+
export interface ProIconComponent extends ProIconAttributes {
|
|
2921
|
+
/**
|
|
2922
|
+
* The name of the icon in kebabCase, PascalCase, Friendly Form, or camelCase. Case-insensitive
|
|
2923
|
+
* @example These are allowed:
|
|
2924
|
+
* ```jsx
|
|
2925
|
+
* <ProIcon icon="add square" />
|
|
2926
|
+
* <ProIcon icon="home" />
|
|
2927
|
+
* <ProIcon icon="AddIcon" />
|
|
2928
|
+
* <ProIcon icon="bookmarkMultiple" />
|
|
2929
|
+
* ```
|
|
2930
|
+
* [Documentation](https://procode-software.github.io/proicons/docs/react#proicon-component)
|
|
2931
|
+
*/
|
|
2932
|
+
icon: IconEnum<keyof typeof icons> | (string & {});
|
|
2933
|
+
}
|
|
2934
|
+
/**
|
|
2935
|
+
* Generic icon component allowing you to import icons by their name
|
|
2936
|
+
*
|
|
2937
|
+
* Note: This breaks tree-shaking
|
|
2938
|
+
* @example ```jsx
|
|
2939
|
+
* <ProIcon icon="Add Square" />
|
|
2940
|
+
* ```
|
|
2941
|
+
*/
|
|
2942
|
+
export declare const ProIcon: React$1.ForwardRefExoticComponent<Omit<ProIconComponent, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
|
|
2943
|
+
|
|
2944
|
+
declare namespace icons {
|
|
2945
|
+
export { AccessibilityIcon, AccessibilityIcon as Accessibility, AddCircleIcon, AddCircleIcon as AddCircle, AddCircleIcon as AddCircularIcon, AddIcon, AddIcon as Add, AddIcon as AdditionIcon, AddIcon as CreateIcon, AddIcon as PlusIcon, AddRhombusIcon, AddRhombusIcon as AddRhombus, AddSquareIcon, AddSquareIcon as AddSquare, AddSquareMultipleIcon, AddSquareMultipleIcon as AddSquareMultiple, AddSquareMultipleIcon as AddSquareMultipleVarIcon, AirplaneIcon, AirplaneIcon as Airplane, AirplaneLandingIcon, AirplaneLandingIcon as AirplaneLanding, AirplaneTakeoffIcon, AirplaneTakeoffIcon as AirplaneTakeoff, AlertCircleIcon, AlertCircleIcon as AlertCircle, AlertTriangleIcon, AlertTriangleIcon as AlertTriangle, AlignBottomIcon, AlignBottomIcon as AlignBottom, AlignHorizontalCentersIcon, AlignHorizontalCentersIcon as AlignHorizontalCenters, AlignLeftIcon, AlignLeftIcon as AlignLeft, AlignRightIcon, AlignRightIcon as AlignRight, AlignTopIcon, AlignTopIcon as AlignTop, AlignVerticalCentersIcon, AlignVerticalCentersIcon as AlignVerticalCenters, AmazonIcon, AmazonIcon as Amazon, AnchorIcon, AnchorIcon as Anchor, AndroidIcon, AndroidIcon as Android, AngleIcon, AngleIcon as Angle, AppRemoveIcon, AppRemoveIcon as AppRemove, AppStoreIcon, AppStoreIcon as AppStore, AppleIcon, AppleIcon as Apple, AppsAddIcon, AppsAddIcon as AppsAdd, AppsIcon, AppsIcon as Apps, AppsListIcon, AppsListIcon as AppsList, ArcIcon, ArcIcon as Arc, ArchiveAdd2Icon, ArchiveAdd2Icon as ArchiveAdd2, ArchiveIcon, ArchiveIcon as Archive, ArrowClockwiseIcon, ArrowClockwiseIcon as ArrowClockwise, ArrowCounterclockwiseIcon, ArrowCounterclockwiseIcon as ArrowCounterclockwise, ArrowDownIcon, ArrowDownIcon as ArrowDown, ArrowDownloadIcon, ArrowDownloadIcon as ArrowDownload, ArrowEnterIcon, ArrowEnterIcon as ArrowEnter, ArrowExportIcon, ArrowExportIcon as ArrowExport, ArrowForwardIcon, ArrowForwardIcon as ArrowForward, ArrowForwardIcon as ArrowFowardIcon, ArrowImportIcon, ArrowImportIcon as ArrowImport, ArrowLeftIcon, ArrowLeftIcon as ArrowLeft, ArrowLeftRightIcon, ArrowLeftRightIcon as ArrowLeftRight, ArrowMaximizeIcon, ArrowMaximizeIcon as ArrowMaximize, ArrowMinimizeIcon, ArrowMinimizeIcon as ArrowMinimize, ArrowMoveIcon, ArrowMoveIcon as ArrowMove, ArrowRedo2Icon, ArrowRedo2Icon as ArrowRedo2, ArrowRedoIcon, ArrowRedoIcon as ArrowRedo, ArrowReplyIcon, ArrowReplyIcon as ArrowReply, ArrowRightIcon, ArrowRightIcon as ArrowRight, ArrowRotateClockwiseIcon, ArrowRotateClockwiseIcon as ArrowRotateClockwise, ArrowRotateCounterclockwiseIcon, ArrowRotateCounterclockwiseIcon as ArrowRotateCounterclockwise, ArrowSortIcon, ArrowSortIcon as ArrowSort, ArrowSwapIcon, ArrowSwapIcon as ArrowSwap, ArrowSync2Icon, ArrowSync2Icon as ArrowSync2, ArrowSyncIcon, ArrowSyncIcon as ArrowSync, ArrowTrendingIcon, ArrowTrendingIcon as ArrowTrending, ArrowTrendingIcon as Stocks2Icon, ArrowUndo2Icon, ArrowUndo2Icon as ArrowUndo2, ArrowUndoIcon, ArrowUndoIcon as ArrowUndo, ArrowUpDownIcon, ArrowUpDownIcon as ArrowUpDown, ArrowUpIcon, ArrowUpIcon as ArrowUp, ArrowUploadIcon, ArrowUploadIcon as ArrowUpload, AttachIcon, AttachIcon as Attach, AttachIcon as AttatchIcon, BackgroundColorAccentIcon, BackgroundColorAccentIcon as BackgroundColorAccent, BackgroundColorIcon, BackgroundColorIcon as BackgroundColor, BackspaceIcon, BackspaceIcon as Backspace, BadgeIcon, BadgeIcon as Badge, BankIcon, BankIcon as Bank, BankIcon as MuseumIcon, BarGraphIcon, BarGraphIcon as BarGraph, BatteryFullIcon, BatteryFullIcon as BatteryFull, BatteryIcon, BatteryIcon as Battery, BeachIcon, BeachIcon as Beach, BeakerIcon, BeakerIcon as Beaker, BellDotIcon, BellDotIcon as BellDot, BellIcon, BellIcon as Bell, BellIcon as NotificationIcon, BellOffIcon, BellOffIcon as BellOff, BlueskyIcon, BlueskyIcon as Bluesky, BluetoothIcon, BluetoothIcon as Bluetooth, BoardIcon, BoardIcon as Board, BoltIcon, BoltIcon as Bolt, BoltIcon as ZapIcon, Book2Icon, Book2Icon as Book2, BookAdd2Icon, BookAdd2Icon as BookAdd2, BookAddIcon, BookAddIcon as BookAdd, BookIcon, BookIcon as Book, BookInfo2Icon, BookInfo2Icon as BookInfo2, BookInfoIcon, BookInfoIcon as BookInfo, BookOpenIcon, BookOpenIcon as BookOpen, BookOpenIcon as ReadIcon, BookOpenIcon as ReadingIcon, BookmarkAddIcon, BookmarkAddIcon as BookmarkAdd, BookmarkIcon, BookmarkIcon as Bookmark, BookmarkMultipleIcon, BookmarkMultipleIcon as BookmarkMultiple, BookmarkMultipleIcon as BookmarkMultipleVarIcon, BorderAllIcon, BorderAllIcon as BorderAll, BoxDragIcon, BoxDragIcon as BoxDrag, BoxIcon, BoxIcon as Box, BoxIcon as PackageIcon, BoxIcon as ParcelIcon, BoxMarginsIcon, BoxMarginsIcon as BoxMargins, BracesIcon, BracesIcon as Braces, BracesVariableIcon, BracesVariableIcon as BracesVariable, BracketsIcon, BracketsIcon as Brackets, BranchCompareIcon, BranchCompareIcon as BranchCompare, BranchFork2Icon, BranchFork2Icon as BranchFork2, BranchForkIcon, BranchForkIcon as BranchFork, BranchIcon, BranchIcon as Branch, BranchPullRequestIcon, BranchPullRequestIcon as BranchPullRequest, Briefcase2Icon, Briefcase2Icon as Briefcase2, BriefcaseIcon, BriefcaseIcon as Briefcase, BrightnessIcon, BrightnessIcon as Brightness, BroomIcon, BroomIcon as Broom, BugIcon, BugIcon as Bug, BuildingMultipleIcon, BuildingMultipleIcon as BuildingMultiple, ButtonIcon, ButtonIcon as Button, CakeIcon, CakeIcon as Cake, CalculatorIcon, CalculatorIcon as Calculator, CalendarIcon, CalendarIcon as Calendar, CalligraphyPenIcon, CalligraphyPenIcon as CalligraphyPen, CameraIcon, CameraIcon as Camera, CancelCircleIcon, CancelCircleIcon as CancelCircle, CancelIcon, CancelIcon as Cancel, CancelIcon as CloseIcon, CancelIcon as DismissIcon, CancelIcon as XIcon, CancelOctagonIcon, CancelOctagonIcon as CancelOctagon, CancelSquareIcon, CancelSquareIcon as CancelSquare, CandyIcon, CandyIcon as Candy, CartIcon, CartIcon as Cart, CartIcon as ShopIcon, CartIcon as ShoppingCartIcon, CartIcon as ShoppingIcon, CentIcon, CentIcon as Cent, CenterHorizontalIcon, CenterHorizontalIcon as CenterHorizontal, CenterVerticalIcon, CenterVerticalIcon as CenterVertical, ChatIcon, ChatIcon as Chat, CheckboxCheckedIcon, CheckboxCheckedIcon as CheckboxChecked, CheckboxCheckedIcon as CheckmarkCheckedIcon, CheckboxIndeterminate2Icon, CheckboxIndeterminate2Icon as CheckboxIndeterminate2, CheckboxIndeterminate2Icon as CheckboxIntermediate2Icon, CheckboxIndeterminateIcon, CheckboxIndeterminateIcon as CheckboxIndeterminate, CheckboxIndeterminateIcon as CheckmarkIntermediateIcon, CheckboxUncheckedIcon, CheckboxUncheckedIcon as CheckboxUnchecked, CheckmarkCircleIcon, CheckmarkCircleIcon as CheckmarkCircle, CheckmarkIcon, CheckmarkIcon as Checkmark, CheckmarkStarburstIcon, CheckmarkStarburstIcon as CheckmarkStarburst, CheckmarkStarburstIcon as VerifiedIcon, ChevronDownIcon, ChevronDownIcon as ChevronDown, ChevronLeftIcon, ChevronLeftIcon as ChevronLeft, ChevronRightIcon, ChevronRightIcon as ChevronRight, ChevronUpIcon, ChevronUpIcon as ChevronUp, ChromeRestoreIcon, ChromeRestoreIcon as ChromeRestore, ChromeRestoreIcon as ChromeRestoreVarIcon, CircleIcon, CircleIcon as Circle, CircleSmallIcon, CircleSmallIcon as CircleSmall, CircleSmallIcon as DotIcon, ClipboardIcon, ClipboardIcon as Clipboard, ClipboardPasteIcon, ClipboardPasteIcon as ClipboardPaste, ClipboardSearchIcon, ClipboardSearchIcon as ClipboardSearch, ClockIcon, ClockIcon as Clock, ClosedCaptionsIcon, ClosedCaptionsIcon as ClosedCaptions, CloudIcon, CloudIcon as Cloud, CodeIcon, CodeIcon as Code, CoffeeHotIcon, CoffeeHotIcon as CoffeeHot, ColorPaletteIcon, ColorPaletteIcon as ColorPalette, CommentAdd2Icon, CommentAdd2Icon as CommentAdd2, CommentAddIcon, CommentAddIcon as CommentAdd, CommentExclamationIcon, CommentExclamationIcon as CommentExclamation, CommentIcon, CommentIcon as Comment, CommentMultipleIcon, CommentMultipleIcon as CommentMultiple, CommentMultipleIcon as CommentMultipleVarIcon, CompareSizeIcon, CompareSizeIcon as CompareSize, CompassIcon, CompassIcon as Compass, ComponentIcon, ComponentIcon as Component, ComposeIcon, ComposeIcon as Compose, ComputerIcon, ComputerIcon as Computer, ComputerMacIcon, ComputerMacIcon as ComputerMac, ContractDownIcon, ContractDownIcon as ContractDown, CookiesIcon, CookiesIcon as Cookies, CopyIcon, CopyIcon as Copy, CopyIcon as CopyVarIcon, CopyleftIcon, CopyleftIcon as Copyleft, CopyrightIcon, CopyrightIcon as Copyright, CornerRadiusIcon, CornerRadiusIcon as CornerRadius, CreditCardIcon, CreditCardIcon as CreditCard, CropIcon, CropIcon as Crop, Css2Icon, Css2Icon as Css2, CssIcon, CssIcon as Css, CursorClickIcon, CursorClickIcon as CursorClick, CursorDragIcon, CursorDragIcon as CursorDrag, CursorIcon, CursorIcon as Cursor, CutIcon, CutIcon as Cut, DarkThemeIcon, DarkThemeIcon as DarkTheme, DatabaseAddIcon, DatabaseAddIcon as DatabaseAdd, DatabaseIcon, DatabaseIcon as Database, DeleteIcon, DeleteIcon as Delete, DiamondIcon, DiamondIcon as Diamond, DiamondIcon as PremiumIcon, DirectionsIcon, DirectionsIcon as Directions, DoNotDisturbIcon, DoNotDisturbIcon as DoNotDisturb, DocumentIcon, DocumentIcon as Document, DollarCircleIcon, DollarCircleIcon as DollarCircle, DollarIcon, DollarIcon as Dollar, DollarIcon as MoneyIcon, DoorIcon, DoorIcon as Door, DoorOpenIcon, DoorOpenIcon as DoorOpen, DrawTextIcon, DrawTextIcon as DrawText, DropIcon, DropIcon as Drop, EmojiFrownIcon, EmojiFrownIcon as EmojiFrown, EmojiGrinIcon, EmojiGrinIcon as EmojiGrin, EmojiIcon, EmojiIcon as Emoji, EmojiIcon as HappyFaceIcon, EmojiIcon as SmileIcon, EmojiIcon as SmileyIcon, EmojiLaughterIcon, EmojiLaughterIcon as EmojiLaughter, EraserIcon, EraserIcon as Eraser, ExpandIcon, ExpandIcon as Expand, ExtensionIcon, ExtensionIcon as Extension, ExtensionIcon as PuzzleIcon, EyeIcon, EyeIcon as Eye, EyeIcon as PreviewIcon, EyeIcon as ShowIcon, EyeOffIcon, EyeOffIcon as EyeOff, EyeOffIcon as HiddenIcon, EyeOffIcon as HideIcon, EyeOffIcon as VisibleIcon, EyedropperColorAccentIcon, EyedropperColorAccentIcon as EyedropperColorAccent, EyedropperColorIcon, EyedropperColorIcon as EyedropperColor, EyedropperIcon, EyedropperIcon as Eyedropper, FacebookIcon, FacebookIcon as Facebook, FastForwardIcon, FastForwardIcon as FastForward, FastForwardIcon as FastFowardIcon, FigmaIcon, FigmaIcon as Figma, FileAddIcon, FileAddIcon as FileAdd, FileIcon, FileIcon as File, FileMultipleIcon, FileMultipleIcon as FileMultiple, FileSyncIcon, FileSyncIcon as FileSync, Filter2Icon, Filter2Icon as Filter2, FilterCancel2Icon, FilterCancel2Icon as FilterCancel2, FilterCancelIcon, FilterCancelIcon as FilterCancel, FilterIcon, FilterIcon as Filter, Flag2Icon, Flag2Icon as Flag2, FlagIcon, FlagIcon as Flag, FlashlightIcon, FlashlightIcon as Flashlight, FoldableHorizontalHalfIcon, FoldableHorizontalHalfIcon as FoldableHorizontalHalf, FoldableHorizontalIcon, FoldableHorizontalIcon as FoldableHorizontal, FoldableVerticalHalfIcon, FoldableVerticalHalfIcon as FoldableVerticalHalf, FoldableVerticalIcon, FoldableVerticalIcon as FoldableVertical, FolderAddIcon, FolderAddIcon as FolderAdd, FolderIcon, FolderIcon as Folder, FolderMultipleIcon, FolderMultipleIcon as FolderMultiple, FolderOpenIcon, FolderOpenIcon as FolderOpen, FullScreenMaximizeIcon, FullScreenMaximizeIcon as FullScreenMaximize, FullScreenMinimizeIcon, FullScreenMinimizeIcon as FullScreenMinimize, GameIcon, GameIcon as Game, GiftIcon, GiftIcon as Gift, GitCommitIcon, GitCommitIcon as GitCommit, GithubIcon, GithubIcon as Github, GitlabIcon, GitlabIcon as Gitlab, GlobeIcon, GlobeIcon as Globe, Google2Icon, Google2Icon as Google2, GoogleChromeIcon, GoogleChromeIcon as GoogleChrome, GoogleIcon, GoogleIcon as Google, GooglePlayIcon, GooglePlayIcon as GooglePlay, GraphIcon, GraphIcon as Graph, GraphIcon as StocksIcon, GridDotsIcon, GridDotsIcon as GridDots, GridIcon, GridIcon as Grid, HamburgerIcon, HamburgerIcon as Hamburger, HandIcon, HandIcon as Hand, HardDriveIcon, HardDriveIcon as HardDrive, HashIcon, HashIcon as Hash, HatGraduationIcon, HatGraduationIcon as HatGraduation, HeadphonesIcon, HeadphonesIcon as Headphones, HeadphonesOffIcon, HeadphonesOffIcon as HeadphonesOff, HeartIcon, HeartIcon as Heart, HeartIcon as LoveIcon, HeartStylisticIcon, HeartStylisticIcon as HeartStylistic, HexagonIcon, HexagonIcon as Hexagon, HighlighterAccentIcon, HighlighterAccentIcon as HighlighterAccent, HighlighterIcon, HighlighterIcon as Highlighter, HistoryIcon, HistoryIcon as History, Home2Icon, Home2Icon as Home2, HomeIcon, HomeIcon as Home, HomeIcon as HouseIcon, HourglassIcon, HourglassIcon as Hourglass, HtmlIcon, HtmlIcon as Html, InfinityIcon, InfinityIcon as Infinity, InfoIcon, InfoIcon as Info, InstagramIcon, InstagramIcon as Instagram, JavascriptIcon, JavascriptIcon as Javascript, KeyboardCommandIcon, KeyboardCommandIcon as KeyboardCommand, KeyboardIcon, KeyboardIcon as Keyboard, KeyboardShiftIcon, KeyboardShiftIcon as KeyboardShift, LaptopIcon, LaptopIcon as Laptop, LayersIcon, LayersIcon as Layers, LayoutIcon, LayoutIcon as Layout, LeafIcon, LeafIcon as Leaf, LeafThreeIcon, LeafThreeIcon as LeafThree, LeafTwoIcon, LeafTwoIcon as LeafTwo, LibraryIcon, LibraryIcon as BookshelfIcon, LibraryIcon as Library, LightbulbIcon, LightbulbIcon as Lightbulb, LineDiagonalIcon, LineDiagonalIcon as LineDiagonal, LinkIcon, LinkIcon as Link, LinuxIcon, LinuxIcon as Linux, LocationIcon, LocationIcon as Location, LockIcon, LockIcon as Lock, LockOpenIcon, LockOpenIcon as LockOpen, MailIcon, MailIcon as EmailIcon, MailIcon as Mail, MailOpenIcon, MailOpenIcon as MailOpen, MapIcon, MapIcon as Map, MaskIcon, MaskIcon as Mask, MathIcon, MathIcon as Math, MegaphoneIcon, MegaphoneIcon as Megaphone, MegaphoneLoudIcon, MegaphoneLoudIcon as MegaphoneLoud, MentionIcon, MentionIcon as Mention, MenuIcon, MenuIcon as Menu, MicrophoneIcon, MicrophoneIcon as Microphone, MicrophoneOffIcon, MicrophoneOffIcon as MicrophoneOff, MicrosoftEdgeIcon, MicrosoftEdgeIcon as MicrosoftEdge, MicrosoftIcon, MicrosoftIcon as Microsoft, MicrosoftIcon as MicrosoftWindowsIcon, MicrosoftIcon as Windows10Icon, MoonIcon, MoonIcon as Moon, MoreIcon, MoreIcon as KebabIcon, MoreIcon as More, MoreIcon as MoreHorizontalIcon, MoreVerticalIcon, MoreVerticalIcon as MoreVertical, MotherboardIcon, MotherboardIcon as Motherboard, MovieIcon, MovieIcon as Movie, MusicNote2Icon, MusicNote2Icon as MusicNote2, MusicNoteIcon, MusicNoteIcon as MusicNote, NarratorIcon, NarratorIcon as Narrator, NodejsIcon, NodejsIcon as Nodejs, NoteAddIcon, NoteAddIcon as NoteAdd, NoteIcon, NoteIcon as Note, NpmIcon, NpmIcon as Npm, OctagonIcon, OctagonIcon as Octagon, OpenIcon, OpenIcon as ExternalIcon, OpenIcon as ExternalLinkIcon, OpenIcon as Open, OpenSourceIcon, OpenSourceIcon as OpenSource, PageMarginsIcon, PageMarginsIcon as PageMargins, PaintBucketAccentIcon, PaintBucketAccentIcon as PaintBucketAccent, PaintBucketIcon, PaintBucketIcon as PaintBucket, Paintbrush2Icon, Paintbrush2Icon as Paintbrush2, PaintbrushIcon, PaintbrushIcon as Paintbrush, PanelBottomIcon, PanelBottomIcon as PanelBottom, PanelBottomOpenIcon, PanelBottomOpenIcon as PanelBottomOpen, PanelLeftContractIcon, PanelLeftContractIcon as PanelLeftContract, PanelLeftExpandIcon, PanelLeftExpandIcon as PanelLeftExpand, PanelLeftIcon, PanelLeftIcon as PanelLeft, PanelLeftOpenIcon, PanelLeftOpenIcon as PanelLeftOpen, PanelRightContractIcon, PanelRightContractIcon as PanelRightContract, PanelRightExpandIcon, PanelRightExpandIcon as PanelRightExpand, PanelRightIcon, PanelRightIcon as PanelRight, PanelRightOpenIcon, PanelRightOpenIcon as PanelRightOpen, ParenthesesIcon, ParenthesesIcon as Parentheses, PauseIcon, PauseIcon as Pause, Pdf2Icon, Pdf2Icon as Pdf2, PdfIcon, PdfIcon as Pdf, PencilIcon, PencilIcon as EditIcon, PencilIcon as PenIcon, PencilIcon as Pencil, PentagonIcon, PentagonIcon as Pentagon, Person2Icon, Person2Icon as Person2, PersonAdd2Icon, PersonAdd2Icon as PersonAdd2, PersonAddIcon, PersonAddIcon as PersonAdd, PersonCircleIcon, PersonCircleIcon as PersonCircle, PersonIcon, PersonIcon as Person, PersonMultipleIcon, PersonMultipleIcon as PersonMultiple, PhoneAcceptIcon, PhoneAcceptIcon as PhoneAccept, PhoneHangUpIcon, PhoneHangUpIcon as PhoneHangUp, PhoneIcon, PhoneIcon as Phone, PhotoFilterIcon, PhotoFilterIcon as PhotoFilter, PhotoIcon, PhotoIcon as Photo, PhotoMultipleIcon, PhotoMultipleIcon as PhotoMultiple, PictureInPicture2Icon, PictureInPicture2Icon as PictureInPicture2, PictureInPictureEnterIcon, PictureInPictureEnterIcon as PictureInPictureEnter, PictureInPictureExitIcon, PictureInPictureExitIcon as PictureInPictureExit, PictureInPictureIcon, PictureInPictureIcon as PictureInPicture, PinIcon, PinIcon as Pin, PinOffIcon, PinOffIcon as PinOff, PlayCircleIcon, PlayCircleIcon as PlayCircle, PlayCircleIcon as PlayCircularIcon, PlayIcon, PlayIcon as Play, PrinterIcon, PrinterIcon as Printer, ProhibitedIcon, ProhibitedIcon as Prohibited, PythonIcon, PythonIcon as Python, QrCodeIcon, QrCodeIcon as QrCode, QuestionCircleIcon, QuestionCircleIcon as QuestionCircle, QuestionIcon, QuestionIcon as Question, QuoteIcon, QuoteIcon as Quote, ReactjsIcon, ReactjsIcon as Reactjs, RecordIcon, RecordIcon as Record, RecordStopIcon, RecordStopIcon as RecordStop, RectangleWideIcon, RectangleWideIcon as RectangleWide, RegularExpressionIcon, RegularExpressionIcon as RegularExpression, ReverseIcon, ReverseIcon as Reverse, RhombusIcon, RhombusIcon as Rhombus, RibbonIcon, RibbonIcon as Ribbon, RibbonStarIcon, RibbonStarIcon as RibbonStar, RobloxIcon, RobloxIcon as Roblox, RulerDiagonalIcon, RulerDiagonalIcon as RulerDiagonal, RulerIcon, RulerIcon as Ruler, SaveIcon, SaveIcon as FloppyDiskIcon, SaveIcon as Save, SaveMultipleIcon, SaveMultipleIcon as FloppyDiskMultipleIcon, SaveMultipleIcon as SaveAllIcon, SaveMultipleIcon as SaveMultiple, SavePencilIcon, SavePencilIcon as SaveAsIcon, SavePencilIcon as SavePencil, ScreenSizeIcon, ScreenSizeIcon as ScreenSize, Script2Icon, Script2Icon as Script2, ScriptIcon, ScriptIcon as Script, SearchCancelIcon, SearchCancelIcon as SearchCancel, SearchCancelIcon as SearchNoResultsIcon, SearchIcon, SearchIcon as FindIcon, SearchIcon as Search, SectionBreakIcon, SectionBreakIcon as SectionBreak, SendIcon, SendIcon as Send, ServerIcon, ServerIcon as Server, SettingsIcon, SettingsIcon as Settings, ShapeDifferenceIcon, ShapeDifferenceIcon as ShapeDifference, ShapeIntersectIcon, ShapeIntersectIcon as ShapeIntersect, ShapeSubtractIcon, ShapeSubtractIcon as ShapeSubtract, ShapeUnionIcon, ShapeUnionIcon as ShapeUnion, ShieldCancelIcon, ShieldCancelIcon as ShieldCancel, ShieldCheckmarkIcon, ShieldCheckmarkIcon as ShieldCheckmark, ShieldIcon, ShieldIcon as Shield, ShieldKeyholeIcon, ShieldKeyholeIcon as ShieldKeyhole, SkullIcon, SkullIcon as Skull, SlashSquareIcon, SlashSquareIcon as SlashBoxIcon, SlashSquareIcon as SlashSquare, SoundwaveIcon, SoundwaveIcon as Soundwave, SpacebarIcon, SpacebarIcon as Spacebar, SparkleIcon, SparkleIcon as Sparkle, SpinnerIcon, SpinnerIcon as Spinner, SplitHorizontalIcon, SplitHorizontalIcon as SplitHorizontal, SplitVerticalIcon, SplitVerticalIcon as SplitVertical, SquareIcon, SquareIcon as Square, StarIcon, StarIcon as Star, StrokeThicknessIcon, StrokeThicknessIcon as StrokeThickness, SubtractIcon, SubtractIcon as ChromeMinimizeIcon, SubtractIcon as LineHorizontalIcon, SubtractIcon as MinusIcon, SubtractIcon as Subtract, SvelteIcon, SvelteIcon as Svelte, SymbolsIcon, SymbolsIcon as Symbols, TableIcon, TableIcon as Table, TableSimpleIcon, TableSimpleIcon as TableSimple, TabletIcon, TabletIcon as Tablet, TagAccentIcon, TagAccentIcon as TagAccent, TagIcon, TagIcon as Tag, TagMultipleIcon, TagMultipleIcon as TagMultiple, TagMultipleIcon as TagMultipleVarIcon, TaskListIcon, TaskListIcon as TaskList, TerminalIcon, TerminalIcon as Terminal, TextAddIcon, TextAddIcon as TextAdd, TextAlignCenterIcon, TextAlignCenterIcon as TextAlignCenter, TextAlignJustifyIcon, TextAlignJustifyIcon as TextAlignJustify, TextAlignLeftIcon, TextAlignLeftIcon as TextAlignLeft, TextAlignRightIcon, TextAlignRightIcon as TextAlignRight, TextBoldIcon, TextBoldIcon as TextBold, TextBulletListIcon, TextBulletListIcon as TextBulletList, TextBulletListSquareAddIcon, TextBulletListSquareAddIcon as TextBulletListSquareAdd, TextBulletListSquareIcon, TextBulletListSquareIcon as TextBulletListSquare, TextCaseLowercaseIcon, TextCaseLowercaseIcon as TextCaseLowercase, TextCaseTitleIcon, TextCaseTitleIcon as TextCaseTitle, TextCaseUppercaseIcon, TextCaseUppercaseIcon as TextCaseUppercase, TextClearFormattingIcon, TextClearFormattingIcon as TextClearFormatting, TextCollapseIcon, TextCollapseIcon as TextCollapse, TextColorAccentIcon, TextColorAccentIcon as TextColorAccent, TextColorIcon, TextColorIcon as TextColor, TextEditStyleIcon, TextEditStyleIcon as TextEditStyle, TextEffectsIcon, TextEffectsIcon as TextEffects, TextExpandIcon, TextExpandIcon as TextExpand, TextFontIcon, TextFontIcon as TextFont, TextFontSizeIcon, TextFontSizeIcon as TextFontSize, TextFootnoteIcon, TextFootnoteIcon as TextFootnote, TextHighlightColorAccentIcon, TextHighlightColorAccentIcon as TextHighlightColorAccent, TextHighlightColorIcon, TextHighlightColorIcon as TextHighlightColor, TextIcon, TextIcon as Text, TextIndentDecreaseIcon, TextIndentDecreaseIcon as TextIndentDecrease, TextIndentIncreaseIcon, TextIndentIncreaseIcon as TextIndentIncrease, TextItalicIcon, TextItalicIcon as TextItalic, TextLargeIcon, TextLargeIcon as TextLarge, TextLetterSpacingIcon, TextLetterSpacingIcon as TextLetterSpacing, TextLineHeightIcon, TextLineHeightIcon as TextLineHeight, TextLineSpacingIcon, TextLineSpacingIcon as TextLineSpacing, TextNumberListIcon, TextNumberListIcon as TextNumberList, TextPositionBottomIcon, TextPositionBottomIcon as TextPositionBottom, TextPositionMiddleIcon, TextPositionMiddleIcon as TextPositionMiddle, TextPositionTopIcon, TextPositionTopIcon as TextPositionTop, TextSmallIcon, TextSmallIcon as TextSmall, TextStrikethroughIcon, TextStrikethroughIcon as TextStrikethrough, TextSubscriptIcon, TextSubscriptIcon as TextSubscript, TextSuperscriptIcon, TextSuperscriptIcon as TextSuperscript, TextTypographyIcon, TextTypographyIcon as TextTypography, TextUnderlineIcon, TextUnderlineIcon as TextUnderline, ThumbsDownIcon, ThumbsDownIcon as DislikeIcon, ThumbsDownIcon as ThumbsDown, ThumbsUpIcon, ThumbsUpIcon as LikeIcon, ThumbsUpIcon as ThumbsUp, TiktokIcon, TiktokIcon as Tiktok, TimerIcon, TimerIcon as Timer, ToolboxIcon, ToolboxIcon as Toolbox, TriangleIcon, TriangleIcon as Triangle, TuneIcon, TuneIcon as Tune, TvIcon, TvIcon as Tv, TypescriptIcon, TypescriptIcon as Typescript, UbuntuIcon, UbuntuIcon as Ubuntu, VehicleCarIcon, VehicleCarIcon as VehicleCar, VideoClipIcon, VideoClipIcon as VideoClip, VideoIcon, VideoIcon as Video, VisualStudioCodeIcon, VisualStudioCodeIcon as VisualStudioCode, VolumeIcon, VolumeIcon as Volume, VolumeIcon as VolumeHighIcon, VolumeLowIcon, VolumeLowIcon as Volume1Icon, VolumeLowIcon as VolumeLow, VolumeMediumIcon, VolumeMediumIcon as Volume0Icon, VolumeMediumIcon as VolumeMedium, VolumeMuteIcon, VolumeMuteIcon as VolumeMute, VuejsIcon, VuejsIcon as Vuejs, WatchIcon, WatchIcon as Watch, WeatherCloudyIcon, WeatherCloudyIcon as WeatherCloudy, WebpackIcon, WebpackIcon as Webpack, WiFiIcon, WiFiIcon as WiFi, WindowAddIcon, WindowAddIcon as WindowAdd, WindowIcon, WindowIcon as Window, WindowMultipleIcon, WindowMultipleIcon as WindowMultiple, WindowMultipleIcon as WindowMultipleVarIcon, WrenchIcon, WrenchIcon as Wrench, XTwitterIcon, XTwitterIcon as TwitterIcon, XTwitterIcon as XTwitter, YoutubeIcon, YoutubeIcon as Youtube, YoutubeShortsIcon, YoutubeShortsIcon as YoutubeShorts, ZoomInIcon, ZoomInIcon as ZoomIn, ZoomOutIcon, ZoomOutIcon as ZoomOut };
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
export {
|
|
2949
|
+
AccessibilityIcon as Accessibility,
|
|
2950
|
+
AddCircleIcon as AddCircle,
|
|
2951
|
+
AddCircleIcon as AddCircularIcon,
|
|
2952
|
+
AddIcon as Add,
|
|
2953
|
+
AddIcon as AdditionIcon,
|
|
2954
|
+
AddIcon as CreateIcon,
|
|
2955
|
+
AddIcon as PlusIcon,
|
|
2956
|
+
AddRhombusIcon as AddRhombus,
|
|
2957
|
+
AddSquareIcon as AddSquare,
|
|
2958
|
+
AddSquareMultipleIcon as AddSquareMultiple,
|
|
2959
|
+
AddSquareMultipleIcon as AddSquareMultipleVarIcon,
|
|
2960
|
+
AirplaneIcon as Airplane,
|
|
2961
|
+
AirplaneLandingIcon as AirplaneLanding,
|
|
2962
|
+
AirplaneTakeoffIcon as AirplaneTakeoff,
|
|
2963
|
+
AlertCircleIcon as AlertCircle,
|
|
2964
|
+
AlertTriangleIcon as AlertTriangle,
|
|
2965
|
+
AlignBottomIcon as AlignBottom,
|
|
2966
|
+
AlignHorizontalCentersIcon as AlignHorizontalCenters,
|
|
2967
|
+
AlignLeftIcon as AlignLeft,
|
|
2968
|
+
AlignRightIcon as AlignRight,
|
|
2969
|
+
AlignTopIcon as AlignTop,
|
|
2970
|
+
AlignVerticalCentersIcon as AlignVerticalCenters,
|
|
2971
|
+
AmazonIcon as Amazon,
|
|
2972
|
+
AnchorIcon as Anchor,
|
|
2973
|
+
AndroidIcon as Android,
|
|
2974
|
+
AngleIcon as Angle,
|
|
2975
|
+
AppRemoveIcon as AppRemove,
|
|
2976
|
+
AppStoreIcon as AppStore,
|
|
2977
|
+
AppleIcon as Apple,
|
|
2978
|
+
AppsAddIcon as AppsAdd,
|
|
2979
|
+
AppsIcon as Apps,
|
|
2980
|
+
AppsListIcon as AppsList,
|
|
2981
|
+
ArcIcon as Arc,
|
|
2982
|
+
ArchiveAdd2Icon as ArchiveAdd2,
|
|
2983
|
+
ArchiveIcon as Archive,
|
|
2984
|
+
ArrowClockwiseIcon as ArrowClockwise,
|
|
2985
|
+
ArrowCounterclockwiseIcon as ArrowCounterclockwise,
|
|
2986
|
+
ArrowDownIcon as ArrowDown,
|
|
2987
|
+
ArrowDownloadIcon as ArrowDownload,
|
|
2988
|
+
ArrowEnterIcon as ArrowEnter,
|
|
2989
|
+
ArrowExportIcon as ArrowExport,
|
|
2990
|
+
ArrowForwardIcon as ArrowForward,
|
|
2991
|
+
ArrowForwardIcon as ArrowFowardIcon,
|
|
2992
|
+
ArrowImportIcon as ArrowImport,
|
|
2993
|
+
ArrowLeftIcon as ArrowLeft,
|
|
2994
|
+
ArrowLeftRightIcon as ArrowLeftRight,
|
|
2995
|
+
ArrowMaximizeIcon as ArrowMaximize,
|
|
2996
|
+
ArrowMinimizeIcon as ArrowMinimize,
|
|
2997
|
+
ArrowMoveIcon as ArrowMove,
|
|
2998
|
+
ArrowRedo2Icon as ArrowRedo2,
|
|
2999
|
+
ArrowRedoIcon as ArrowRedo,
|
|
3000
|
+
ArrowReplyIcon as ArrowReply,
|
|
3001
|
+
ArrowRightIcon as ArrowRight,
|
|
3002
|
+
ArrowRotateClockwiseIcon as ArrowRotateClockwise,
|
|
3003
|
+
ArrowRotateCounterclockwiseIcon as ArrowRotateCounterclockwise,
|
|
3004
|
+
ArrowSortIcon as ArrowSort,
|
|
3005
|
+
ArrowSwapIcon as ArrowSwap,
|
|
3006
|
+
ArrowSync2Icon as ArrowSync2,
|
|
3007
|
+
ArrowSyncIcon as ArrowSync,
|
|
3008
|
+
ArrowTrendingIcon as ArrowTrending,
|
|
3009
|
+
ArrowTrendingIcon as Stocks2Icon,
|
|
3010
|
+
ArrowUndo2Icon as ArrowUndo2,
|
|
3011
|
+
ArrowUndoIcon as ArrowUndo,
|
|
3012
|
+
ArrowUpDownIcon as ArrowUpDown,
|
|
3013
|
+
ArrowUpIcon as ArrowUp,
|
|
3014
|
+
ArrowUploadIcon as ArrowUpload,
|
|
3015
|
+
AttachIcon as Attach,
|
|
3016
|
+
AttachIcon as AttatchIcon,
|
|
3017
|
+
BackgroundColorAccentIcon as BackgroundColorAccent,
|
|
3018
|
+
BackgroundColorIcon as BackgroundColor,
|
|
3019
|
+
BackspaceIcon as Backspace,
|
|
3020
|
+
BadgeIcon as Badge,
|
|
3021
|
+
BankIcon as Bank,
|
|
3022
|
+
BankIcon as MuseumIcon,
|
|
3023
|
+
BarGraphIcon as BarGraph,
|
|
3024
|
+
BatteryFullIcon as BatteryFull,
|
|
3025
|
+
BatteryIcon as Battery,
|
|
3026
|
+
BeachIcon as Beach,
|
|
3027
|
+
BeakerIcon as Beaker,
|
|
3028
|
+
BellDotIcon as BellDot,
|
|
3029
|
+
BellIcon as Bell,
|
|
3030
|
+
BellIcon as NotificationIcon,
|
|
3031
|
+
BellOffIcon as BellOff,
|
|
3032
|
+
BlueskyIcon as Bluesky,
|
|
3033
|
+
BluetoothIcon as Bluetooth,
|
|
3034
|
+
BoardIcon as Board,
|
|
3035
|
+
BoltIcon as Bolt,
|
|
3036
|
+
BoltIcon as ZapIcon,
|
|
3037
|
+
Book2Icon as Book2,
|
|
3038
|
+
BookAdd2Icon as BookAdd2,
|
|
3039
|
+
BookAddIcon as BookAdd,
|
|
3040
|
+
BookIcon as Book,
|
|
3041
|
+
BookInfo2Icon as BookInfo2,
|
|
3042
|
+
BookInfoIcon as BookInfo,
|
|
3043
|
+
BookOpenIcon as BookOpen,
|
|
3044
|
+
BookOpenIcon as ReadIcon,
|
|
3045
|
+
BookOpenIcon as ReadingIcon,
|
|
3046
|
+
BookmarkAddIcon as BookmarkAdd,
|
|
3047
|
+
BookmarkIcon as Bookmark,
|
|
3048
|
+
BookmarkMultipleIcon as BookmarkMultiple,
|
|
3049
|
+
BookmarkMultipleIcon as BookmarkMultipleVarIcon,
|
|
3050
|
+
BorderAllIcon as BorderAll,
|
|
3051
|
+
BoxDragIcon as BoxDrag,
|
|
3052
|
+
BoxIcon as Box,
|
|
3053
|
+
BoxIcon as PackageIcon,
|
|
3054
|
+
BoxIcon as ParcelIcon,
|
|
3055
|
+
BoxMarginsIcon as BoxMargins,
|
|
3056
|
+
BracesIcon as Braces,
|
|
3057
|
+
BracesVariableIcon as BracesVariable,
|
|
3058
|
+
BracketsIcon as Brackets,
|
|
3059
|
+
BranchCompareIcon as BranchCompare,
|
|
3060
|
+
BranchFork2Icon as BranchFork2,
|
|
3061
|
+
BranchForkIcon as BranchFork,
|
|
3062
|
+
BranchIcon as Branch,
|
|
3063
|
+
BranchPullRequestIcon as BranchPullRequest,
|
|
3064
|
+
Briefcase2Icon as Briefcase2,
|
|
3065
|
+
BriefcaseIcon as Briefcase,
|
|
3066
|
+
BrightnessIcon as Brightness,
|
|
3067
|
+
BroomIcon as Broom,
|
|
3068
|
+
BugIcon as Bug,
|
|
3069
|
+
BuildingMultipleIcon as BuildingMultiple,
|
|
3070
|
+
ButtonIcon as Button,
|
|
3071
|
+
CakeIcon as Cake,
|
|
3072
|
+
CalculatorIcon as Calculator,
|
|
3073
|
+
CalendarIcon as Calendar,
|
|
3074
|
+
CalligraphyPenIcon as CalligraphyPen,
|
|
3075
|
+
CameraIcon as Camera,
|
|
3076
|
+
CancelCircleIcon as CancelCircle,
|
|
3077
|
+
CancelIcon as Cancel,
|
|
3078
|
+
CancelIcon as CloseIcon,
|
|
3079
|
+
CancelIcon as DismissIcon,
|
|
3080
|
+
CancelIcon as XIcon,
|
|
3081
|
+
CancelOctagonIcon as CancelOctagon,
|
|
3082
|
+
CancelSquareIcon as CancelSquare,
|
|
3083
|
+
CandyIcon as Candy,
|
|
3084
|
+
CartIcon as Cart,
|
|
3085
|
+
CartIcon as ShopIcon,
|
|
3086
|
+
CartIcon as ShoppingCartIcon,
|
|
3087
|
+
CartIcon as ShoppingIcon,
|
|
3088
|
+
CentIcon as Cent,
|
|
3089
|
+
CenterHorizontalIcon as CenterHorizontal,
|
|
3090
|
+
CenterVerticalIcon as CenterVertical,
|
|
3091
|
+
ChatIcon as Chat,
|
|
3092
|
+
CheckboxCheckedIcon as CheckboxChecked,
|
|
3093
|
+
CheckboxCheckedIcon as CheckmarkCheckedIcon,
|
|
3094
|
+
CheckboxIndeterminate2Icon as CheckboxIndeterminate2,
|
|
3095
|
+
CheckboxIndeterminate2Icon as CheckboxIntermediate2Icon,
|
|
3096
|
+
CheckboxIndeterminateIcon as CheckboxIndeterminate,
|
|
3097
|
+
CheckboxIndeterminateIcon as CheckmarkIntermediateIcon,
|
|
3098
|
+
CheckboxUncheckedIcon as CheckboxUnchecked,
|
|
3099
|
+
CheckmarkCircleIcon as CheckmarkCircle,
|
|
3100
|
+
CheckmarkIcon as Checkmark,
|
|
3101
|
+
CheckmarkStarburstIcon as CheckmarkStarburst,
|
|
3102
|
+
CheckmarkStarburstIcon as VerifiedIcon,
|
|
3103
|
+
ChevronDownIcon as ChevronDown,
|
|
3104
|
+
ChevronLeftIcon as ChevronLeft,
|
|
3105
|
+
ChevronRightIcon as ChevronRight,
|
|
3106
|
+
ChevronUpIcon as ChevronUp,
|
|
3107
|
+
ChromeRestoreIcon as ChromeRestore,
|
|
3108
|
+
ChromeRestoreIcon as ChromeRestoreVarIcon,
|
|
3109
|
+
CircleIcon as Circle,
|
|
3110
|
+
CircleSmallIcon as CircleSmall,
|
|
3111
|
+
CircleSmallIcon as DotIcon,
|
|
3112
|
+
ClipboardIcon as Clipboard,
|
|
3113
|
+
ClipboardPasteIcon as ClipboardPaste,
|
|
3114
|
+
ClipboardSearchIcon as ClipboardSearch,
|
|
3115
|
+
ClockIcon as Clock,
|
|
3116
|
+
ClosedCaptionsIcon as ClosedCaptions,
|
|
3117
|
+
CloudIcon as Cloud,
|
|
3118
|
+
CodeIcon as Code,
|
|
3119
|
+
CoffeeHotIcon as CoffeeHot,
|
|
3120
|
+
ColorPaletteIcon as ColorPalette,
|
|
3121
|
+
CommentAdd2Icon as CommentAdd2,
|
|
3122
|
+
CommentAddIcon as CommentAdd,
|
|
3123
|
+
CommentExclamationIcon as CommentExclamation,
|
|
3124
|
+
CommentIcon as Comment,
|
|
3125
|
+
CommentMultipleIcon as CommentMultiple,
|
|
3126
|
+
CommentMultipleIcon as CommentMultipleVarIcon,
|
|
3127
|
+
CompareSizeIcon as CompareSize,
|
|
3128
|
+
CompassIcon as Compass,
|
|
3129
|
+
ComponentIcon as Component,
|
|
3130
|
+
ComposeIcon as Compose,
|
|
3131
|
+
ComputerIcon as Computer,
|
|
3132
|
+
ComputerMacIcon as ComputerMac,
|
|
3133
|
+
ContractDownIcon as ContractDown,
|
|
3134
|
+
CookiesIcon as Cookies,
|
|
3135
|
+
CopyIcon as Copy,
|
|
3136
|
+
CopyIcon as CopyVarIcon,
|
|
3137
|
+
CopyleftIcon as Copyleft,
|
|
3138
|
+
CopyrightIcon as Copyright,
|
|
3139
|
+
CornerRadiusIcon as CornerRadius,
|
|
3140
|
+
CreditCardIcon as CreditCard,
|
|
3141
|
+
CropIcon as Crop,
|
|
3142
|
+
Css2Icon as Css2,
|
|
3143
|
+
CssIcon as Css,
|
|
3144
|
+
CursorClickIcon as CursorClick,
|
|
3145
|
+
CursorDragIcon as CursorDrag,
|
|
3146
|
+
CursorIcon as Cursor,
|
|
3147
|
+
CutIcon as Cut,
|
|
3148
|
+
DarkThemeIcon as DarkTheme,
|
|
3149
|
+
DatabaseAddIcon as DatabaseAdd,
|
|
3150
|
+
DatabaseIcon as Database,
|
|
3151
|
+
DeleteIcon as Delete,
|
|
3152
|
+
DiamondIcon as Diamond,
|
|
3153
|
+
DiamondIcon as PremiumIcon,
|
|
3154
|
+
DirectionsIcon as Directions,
|
|
3155
|
+
DoNotDisturbIcon as DoNotDisturb,
|
|
3156
|
+
DocumentIcon as Document,
|
|
3157
|
+
DollarCircleIcon as DollarCircle,
|
|
3158
|
+
DollarIcon as Dollar,
|
|
3159
|
+
DollarIcon as MoneyIcon,
|
|
3160
|
+
DoorIcon as Door,
|
|
3161
|
+
DoorOpenIcon as DoorOpen,
|
|
3162
|
+
DrawTextIcon as DrawText,
|
|
3163
|
+
DropIcon as Drop,
|
|
3164
|
+
EmojiFrownIcon as EmojiFrown,
|
|
3165
|
+
EmojiGrinIcon as EmojiGrin,
|
|
3166
|
+
EmojiIcon as Emoji,
|
|
3167
|
+
EmojiIcon as HappyFaceIcon,
|
|
3168
|
+
EmojiIcon as SmileIcon,
|
|
3169
|
+
EmojiIcon as SmileyIcon,
|
|
3170
|
+
EmojiLaughterIcon as EmojiLaughter,
|
|
3171
|
+
EraserIcon as Eraser,
|
|
3172
|
+
ExpandIcon as Expand,
|
|
3173
|
+
ExtensionIcon as Extension,
|
|
3174
|
+
ExtensionIcon as PuzzleIcon,
|
|
3175
|
+
EyeIcon as Eye,
|
|
3176
|
+
EyeIcon as PreviewIcon,
|
|
3177
|
+
EyeIcon as ShowIcon,
|
|
3178
|
+
EyeOffIcon as EyeOff,
|
|
3179
|
+
EyeOffIcon as HiddenIcon,
|
|
3180
|
+
EyeOffIcon as HideIcon,
|
|
3181
|
+
EyeOffIcon as VisibleIcon,
|
|
3182
|
+
EyedropperColorAccentIcon as EyedropperColorAccent,
|
|
3183
|
+
EyedropperColorIcon as EyedropperColor,
|
|
3184
|
+
EyedropperIcon as Eyedropper,
|
|
3185
|
+
FacebookIcon as Facebook,
|
|
3186
|
+
FastForwardIcon as FastForward,
|
|
3187
|
+
FastForwardIcon as FastFowardIcon,
|
|
3188
|
+
FigmaIcon as Figma,
|
|
3189
|
+
FileAddIcon as FileAdd,
|
|
3190
|
+
FileIcon as File,
|
|
3191
|
+
FileMultipleIcon as FileMultiple,
|
|
3192
|
+
FileSyncIcon as FileSync,
|
|
3193
|
+
Filter2Icon as Filter2,
|
|
3194
|
+
FilterCancel2Icon as FilterCancel2,
|
|
3195
|
+
FilterCancelIcon as FilterCancel,
|
|
3196
|
+
FilterIcon as Filter,
|
|
3197
|
+
Flag2Icon as Flag2,
|
|
3198
|
+
FlagIcon as Flag,
|
|
3199
|
+
FlashlightIcon as Flashlight,
|
|
3200
|
+
FoldableHorizontalHalfIcon as FoldableHorizontalHalf,
|
|
3201
|
+
FoldableHorizontalIcon as FoldableHorizontal,
|
|
3202
|
+
FoldableVerticalHalfIcon as FoldableVerticalHalf,
|
|
3203
|
+
FoldableVerticalIcon as FoldableVertical,
|
|
3204
|
+
FolderAddIcon as FolderAdd,
|
|
3205
|
+
FolderIcon as Folder,
|
|
3206
|
+
FolderMultipleIcon as FolderMultiple,
|
|
3207
|
+
FolderOpenIcon as FolderOpen,
|
|
3208
|
+
FullScreenMaximizeIcon as FullScreenMaximize,
|
|
3209
|
+
FullScreenMinimizeIcon as FullScreenMinimize,
|
|
3210
|
+
GameIcon as Game,
|
|
3211
|
+
GiftIcon as Gift,
|
|
3212
|
+
GitCommitIcon as GitCommit,
|
|
3213
|
+
GithubIcon as Github,
|
|
3214
|
+
GitlabIcon as Gitlab,
|
|
3215
|
+
GlobeIcon as Globe,
|
|
3216
|
+
Google2Icon as Google2,
|
|
3217
|
+
GoogleChromeIcon as GoogleChrome,
|
|
3218
|
+
GoogleIcon as Google,
|
|
3219
|
+
GooglePlayIcon as GooglePlay,
|
|
3220
|
+
GraphIcon as Graph,
|
|
3221
|
+
GraphIcon as StocksIcon,
|
|
3222
|
+
GridDotsIcon as GridDots,
|
|
3223
|
+
GridIcon as Grid,
|
|
3224
|
+
HamburgerIcon as Hamburger,
|
|
3225
|
+
HandIcon as Hand,
|
|
3226
|
+
HardDriveIcon as HardDrive,
|
|
3227
|
+
HashIcon as Hash,
|
|
3228
|
+
HatGraduationIcon as HatGraduation,
|
|
3229
|
+
HeadphonesIcon as Headphones,
|
|
3230
|
+
HeadphonesOffIcon as HeadphonesOff,
|
|
3231
|
+
HeartIcon as Heart,
|
|
3232
|
+
HeartIcon as LoveIcon,
|
|
3233
|
+
HeartStylisticIcon as HeartStylistic,
|
|
3234
|
+
HexagonIcon as Hexagon,
|
|
3235
|
+
HighlighterAccentIcon as HighlighterAccent,
|
|
3236
|
+
HighlighterIcon as Highlighter,
|
|
3237
|
+
HistoryIcon as History,
|
|
3238
|
+
Home2Icon as Home2,
|
|
3239
|
+
HomeIcon as Home,
|
|
3240
|
+
HomeIcon as HouseIcon,
|
|
3241
|
+
HourglassIcon as Hourglass,
|
|
3242
|
+
HtmlIcon as Html,
|
|
3243
|
+
InfinityIcon as Infinity,
|
|
3244
|
+
InfoIcon as Info,
|
|
3245
|
+
InstagramIcon as Instagram,
|
|
3246
|
+
JavascriptIcon as Javascript,
|
|
3247
|
+
KeyboardCommandIcon as KeyboardCommand,
|
|
3248
|
+
KeyboardIcon as Keyboard,
|
|
3249
|
+
KeyboardShiftIcon as KeyboardShift,
|
|
3250
|
+
LaptopIcon as Laptop,
|
|
3251
|
+
LayersIcon as Layers,
|
|
3252
|
+
LayoutIcon as Layout,
|
|
3253
|
+
LeafIcon as Leaf,
|
|
3254
|
+
LeafThreeIcon as LeafThree,
|
|
3255
|
+
LeafTwoIcon as LeafTwo,
|
|
3256
|
+
LibraryIcon as BookshelfIcon,
|
|
3257
|
+
LibraryIcon as Library,
|
|
3258
|
+
LightbulbIcon as Lightbulb,
|
|
3259
|
+
LineDiagonalIcon as LineDiagonal,
|
|
3260
|
+
LinkIcon as Link,
|
|
3261
|
+
LinuxIcon as Linux,
|
|
3262
|
+
LocationIcon as Location,
|
|
3263
|
+
LockIcon as Lock,
|
|
3264
|
+
LockOpenIcon as LockOpen,
|
|
3265
|
+
MailIcon as EmailIcon,
|
|
3266
|
+
MailIcon as Mail,
|
|
3267
|
+
MailOpenIcon as MailOpen,
|
|
3268
|
+
MapIcon as Map,
|
|
3269
|
+
MaskIcon as Mask,
|
|
3270
|
+
MathIcon as Math,
|
|
3271
|
+
MegaphoneIcon as Megaphone,
|
|
3272
|
+
MegaphoneLoudIcon as MegaphoneLoud,
|
|
3273
|
+
MentionIcon as Mention,
|
|
3274
|
+
MenuIcon as Menu,
|
|
3275
|
+
MicrophoneIcon as Microphone,
|
|
3276
|
+
MicrophoneOffIcon as MicrophoneOff,
|
|
3277
|
+
MicrosoftEdgeIcon as MicrosoftEdge,
|
|
3278
|
+
MicrosoftIcon as Microsoft,
|
|
3279
|
+
MicrosoftIcon as MicrosoftWindowsIcon,
|
|
3280
|
+
MicrosoftIcon as Windows10Icon,
|
|
3281
|
+
MoonIcon as Moon,
|
|
3282
|
+
MoreIcon as KebabIcon,
|
|
3283
|
+
MoreIcon as More,
|
|
3284
|
+
MoreIcon as MoreHorizontalIcon,
|
|
3285
|
+
MoreVerticalIcon as MoreVertical,
|
|
3286
|
+
MotherboardIcon as Motherboard,
|
|
3287
|
+
MovieIcon as Movie,
|
|
3288
|
+
MusicNote2Icon as MusicNote2,
|
|
3289
|
+
MusicNoteIcon as MusicNote,
|
|
3290
|
+
NarratorIcon as Narrator,
|
|
3291
|
+
NodejsIcon as Nodejs,
|
|
3292
|
+
NoteAddIcon as NoteAdd,
|
|
3293
|
+
NoteIcon as Note,
|
|
3294
|
+
NpmIcon as Npm,
|
|
3295
|
+
OctagonIcon as Octagon,
|
|
3296
|
+
OpenIcon as ExternalIcon,
|
|
3297
|
+
OpenIcon as ExternalLinkIcon,
|
|
3298
|
+
OpenIcon as Open,
|
|
3299
|
+
OpenSourceIcon as OpenSource,
|
|
3300
|
+
PageMarginsIcon as PageMargins,
|
|
3301
|
+
PaintBucketAccentIcon as PaintBucketAccent,
|
|
3302
|
+
PaintBucketIcon as PaintBucket,
|
|
3303
|
+
Paintbrush2Icon as Paintbrush2,
|
|
3304
|
+
PaintbrushIcon as Paintbrush,
|
|
3305
|
+
PanelBottomIcon as PanelBottom,
|
|
3306
|
+
PanelBottomOpenIcon as PanelBottomOpen,
|
|
3307
|
+
PanelLeftContractIcon as PanelLeftContract,
|
|
3308
|
+
PanelLeftExpandIcon as PanelLeftExpand,
|
|
3309
|
+
PanelLeftIcon as PanelLeft,
|
|
3310
|
+
PanelLeftOpenIcon as PanelLeftOpen,
|
|
3311
|
+
PanelRightContractIcon as PanelRightContract,
|
|
3312
|
+
PanelRightExpandIcon as PanelRightExpand,
|
|
3313
|
+
PanelRightIcon as PanelRight,
|
|
3314
|
+
PanelRightOpenIcon as PanelRightOpen,
|
|
3315
|
+
ParenthesesIcon as Parentheses,
|
|
3316
|
+
PauseIcon as Pause,
|
|
3317
|
+
Pdf2Icon as Pdf2,
|
|
3318
|
+
PdfIcon as Pdf,
|
|
3319
|
+
PencilIcon as EditIcon,
|
|
3320
|
+
PencilIcon as PenIcon,
|
|
3321
|
+
PencilIcon as Pencil,
|
|
3322
|
+
PentagonIcon as Pentagon,
|
|
3323
|
+
Person2Icon as Person2,
|
|
3324
|
+
PersonAdd2Icon as PersonAdd2,
|
|
3325
|
+
PersonAddIcon as PersonAdd,
|
|
3326
|
+
PersonCircleIcon as PersonCircle,
|
|
3327
|
+
PersonIcon as Person,
|
|
3328
|
+
PersonMultipleIcon as PersonMultiple,
|
|
3329
|
+
PhoneAcceptIcon as PhoneAccept,
|
|
3330
|
+
PhoneHangUpIcon as PhoneHangUp,
|
|
3331
|
+
PhoneIcon as Phone,
|
|
3332
|
+
PhotoFilterIcon as PhotoFilter,
|
|
3333
|
+
PhotoIcon as Photo,
|
|
3334
|
+
PhotoMultipleIcon as PhotoMultiple,
|
|
3335
|
+
PictureInPicture2Icon as PictureInPicture2,
|
|
3336
|
+
PictureInPictureEnterIcon as PictureInPictureEnter,
|
|
3337
|
+
PictureInPictureExitIcon as PictureInPictureExit,
|
|
3338
|
+
PictureInPictureIcon as PictureInPicture,
|
|
3339
|
+
PinIcon as Pin,
|
|
3340
|
+
PinOffIcon as PinOff,
|
|
3341
|
+
PlayCircleIcon as PlayCircle,
|
|
3342
|
+
PlayCircleIcon as PlayCircularIcon,
|
|
3343
|
+
PlayIcon as Play,
|
|
3344
|
+
PrinterIcon as Printer,
|
|
3345
|
+
ProhibitedIcon as Prohibited,
|
|
3346
|
+
PythonIcon as Python,
|
|
3347
|
+
QrCodeIcon as QrCode,
|
|
3348
|
+
QuestionCircleIcon as QuestionCircle,
|
|
3349
|
+
QuestionIcon as Question,
|
|
3350
|
+
QuoteIcon as Quote,
|
|
3351
|
+
ReactjsIcon as Reactjs,
|
|
3352
|
+
RecordIcon as Record,
|
|
3353
|
+
RecordStopIcon as RecordStop,
|
|
3354
|
+
RectangleWideIcon as RectangleWide,
|
|
3355
|
+
RegularExpressionIcon as RegularExpression,
|
|
3356
|
+
ReverseIcon as Reverse,
|
|
3357
|
+
RhombusIcon as Rhombus,
|
|
3358
|
+
RibbonIcon as Ribbon,
|
|
3359
|
+
RibbonStarIcon as RibbonStar,
|
|
3360
|
+
RobloxIcon as Roblox,
|
|
3361
|
+
RulerDiagonalIcon as RulerDiagonal,
|
|
3362
|
+
RulerIcon as Ruler,
|
|
3363
|
+
SaveIcon as FloppyDiskIcon,
|
|
3364
|
+
SaveIcon as Save,
|
|
3365
|
+
SaveMultipleIcon as FloppyDiskMultipleIcon,
|
|
3366
|
+
SaveMultipleIcon as SaveAllIcon,
|
|
3367
|
+
SaveMultipleIcon as SaveMultiple,
|
|
3368
|
+
SavePencilIcon as SaveAsIcon,
|
|
3369
|
+
SavePencilIcon as SavePencil,
|
|
3370
|
+
ScreenSizeIcon as ScreenSize,
|
|
3371
|
+
Script2Icon as Script2,
|
|
3372
|
+
ScriptIcon as Script,
|
|
3373
|
+
SearchCancelIcon as SearchCancel,
|
|
3374
|
+
SearchCancelIcon as SearchNoResultsIcon,
|
|
3375
|
+
SearchIcon as FindIcon,
|
|
3376
|
+
SearchIcon as Search,
|
|
3377
|
+
SectionBreakIcon as SectionBreak,
|
|
3378
|
+
SendIcon as Send,
|
|
3379
|
+
ServerIcon as Server,
|
|
3380
|
+
SettingsIcon as Settings,
|
|
3381
|
+
ShapeDifferenceIcon as ShapeDifference,
|
|
3382
|
+
ShapeIntersectIcon as ShapeIntersect,
|
|
3383
|
+
ShapeSubtractIcon as ShapeSubtract,
|
|
3384
|
+
ShapeUnionIcon as ShapeUnion,
|
|
3385
|
+
ShieldCancelIcon as ShieldCancel,
|
|
3386
|
+
ShieldCheckmarkIcon as ShieldCheckmark,
|
|
3387
|
+
ShieldIcon as Shield,
|
|
3388
|
+
ShieldKeyholeIcon as ShieldKeyhole,
|
|
3389
|
+
SkullIcon as Skull,
|
|
3390
|
+
SlashSquareIcon as SlashBoxIcon,
|
|
3391
|
+
SlashSquareIcon as SlashSquare,
|
|
3392
|
+
SoundwaveIcon as Soundwave,
|
|
3393
|
+
SpacebarIcon as Spacebar,
|
|
3394
|
+
SparkleIcon as Sparkle,
|
|
3395
|
+
SpinnerIcon as Spinner,
|
|
3396
|
+
SplitHorizontalIcon as SplitHorizontal,
|
|
3397
|
+
SplitVerticalIcon as SplitVertical,
|
|
3398
|
+
SquareIcon as Square,
|
|
3399
|
+
StarIcon as Star,
|
|
3400
|
+
StrokeThicknessIcon as StrokeThickness,
|
|
3401
|
+
SubtractIcon as ChromeMinimizeIcon,
|
|
3402
|
+
SubtractIcon as LineHorizontalIcon,
|
|
3403
|
+
SubtractIcon as MinusIcon,
|
|
3404
|
+
SubtractIcon as Subtract,
|
|
3405
|
+
SvelteIcon as Svelte,
|
|
3406
|
+
SymbolsIcon as Symbols,
|
|
3407
|
+
TableIcon as Table,
|
|
3408
|
+
TableSimpleIcon as TableSimple,
|
|
3409
|
+
TabletIcon as Tablet,
|
|
3410
|
+
TagAccentIcon as TagAccent,
|
|
3411
|
+
TagIcon as Tag,
|
|
3412
|
+
TagMultipleIcon as TagMultiple,
|
|
3413
|
+
TagMultipleIcon as TagMultipleVarIcon,
|
|
3414
|
+
TaskListIcon as TaskList,
|
|
3415
|
+
TerminalIcon as Terminal,
|
|
3416
|
+
TextAddIcon as TextAdd,
|
|
3417
|
+
TextAlignCenterIcon as TextAlignCenter,
|
|
3418
|
+
TextAlignJustifyIcon as TextAlignJustify,
|
|
3419
|
+
TextAlignLeftIcon as TextAlignLeft,
|
|
3420
|
+
TextAlignRightIcon as TextAlignRight,
|
|
3421
|
+
TextBoldIcon as TextBold,
|
|
3422
|
+
TextBulletListIcon as TextBulletList,
|
|
3423
|
+
TextBulletListSquareAddIcon as TextBulletListSquareAdd,
|
|
3424
|
+
TextBulletListSquareIcon as TextBulletListSquare,
|
|
3425
|
+
TextCaseLowercaseIcon as TextCaseLowercase,
|
|
3426
|
+
TextCaseTitleIcon as TextCaseTitle,
|
|
3427
|
+
TextCaseUppercaseIcon as TextCaseUppercase,
|
|
3428
|
+
TextClearFormattingIcon as TextClearFormatting,
|
|
3429
|
+
TextCollapseIcon as TextCollapse,
|
|
3430
|
+
TextColorAccentIcon as TextColorAccent,
|
|
3431
|
+
TextColorIcon as TextColor,
|
|
3432
|
+
TextEditStyleIcon as TextEditStyle,
|
|
3433
|
+
TextEffectsIcon as TextEffects,
|
|
3434
|
+
TextExpandIcon as TextExpand,
|
|
3435
|
+
TextFontIcon as TextFont,
|
|
3436
|
+
TextFontSizeIcon as TextFontSize,
|
|
3437
|
+
TextFootnoteIcon as TextFootnote,
|
|
3438
|
+
TextHighlightColorAccentIcon as TextHighlightColorAccent,
|
|
3439
|
+
TextHighlightColorIcon as TextHighlightColor,
|
|
3440
|
+
TextIcon as Text,
|
|
3441
|
+
TextIndentDecreaseIcon as TextIndentDecrease,
|
|
3442
|
+
TextIndentIncreaseIcon as TextIndentIncrease,
|
|
3443
|
+
TextItalicIcon as TextItalic,
|
|
3444
|
+
TextLargeIcon as TextLarge,
|
|
3445
|
+
TextLetterSpacingIcon as TextLetterSpacing,
|
|
3446
|
+
TextLineHeightIcon as TextLineHeight,
|
|
3447
|
+
TextLineSpacingIcon as TextLineSpacing,
|
|
3448
|
+
TextNumberListIcon as TextNumberList,
|
|
3449
|
+
TextPositionBottomIcon as TextPositionBottom,
|
|
3450
|
+
TextPositionMiddleIcon as TextPositionMiddle,
|
|
3451
|
+
TextPositionTopIcon as TextPositionTop,
|
|
3452
|
+
TextSmallIcon as TextSmall,
|
|
3453
|
+
TextStrikethroughIcon as TextStrikethrough,
|
|
3454
|
+
TextSubscriptIcon as TextSubscript,
|
|
3455
|
+
TextSuperscriptIcon as TextSuperscript,
|
|
3456
|
+
TextTypographyIcon as TextTypography,
|
|
3457
|
+
TextUnderlineIcon as TextUnderline,
|
|
3458
|
+
ThumbsDownIcon as DislikeIcon,
|
|
3459
|
+
ThumbsDownIcon as ThumbsDown,
|
|
3460
|
+
ThumbsUpIcon as LikeIcon,
|
|
3461
|
+
ThumbsUpIcon as ThumbsUp,
|
|
3462
|
+
TiktokIcon as Tiktok,
|
|
3463
|
+
TimerIcon as Timer,
|
|
3464
|
+
ToolboxIcon as Toolbox,
|
|
3465
|
+
TriangleIcon as Triangle,
|
|
3466
|
+
TuneIcon as Tune,
|
|
3467
|
+
TvIcon as Tv,
|
|
3468
|
+
TypescriptIcon as Typescript,
|
|
3469
|
+
UbuntuIcon as Ubuntu,
|
|
3470
|
+
VehicleCarIcon as VehicleCar,
|
|
3471
|
+
VideoClipIcon as VideoClip,
|
|
3472
|
+
VideoIcon as Video,
|
|
3473
|
+
VisualStudioCodeIcon as VisualStudioCode,
|
|
3474
|
+
VolumeIcon as Volume,
|
|
3475
|
+
VolumeIcon as VolumeHighIcon,
|
|
3476
|
+
VolumeLowIcon as Volume1Icon,
|
|
3477
|
+
VolumeLowIcon as VolumeLow,
|
|
3478
|
+
VolumeMediumIcon as Volume0Icon,
|
|
3479
|
+
VolumeMediumIcon as VolumeMedium,
|
|
3480
|
+
VolumeMuteIcon as VolumeMute,
|
|
3481
|
+
VuejsIcon as Vuejs,
|
|
3482
|
+
WatchIcon as Watch,
|
|
3483
|
+
WeatherCloudyIcon as WeatherCloudy,
|
|
3484
|
+
WebpackIcon as Webpack,
|
|
3485
|
+
WiFiIcon as WiFi,
|
|
3486
|
+
WindowAddIcon as WindowAdd,
|
|
3487
|
+
WindowIcon as Window,
|
|
3488
|
+
WindowMultipleIcon as WindowMultiple,
|
|
3489
|
+
WindowMultipleIcon as WindowMultipleVarIcon,
|
|
3490
|
+
WrenchIcon as Wrench,
|
|
3491
|
+
XTwitterIcon as TwitterIcon,
|
|
3492
|
+
XTwitterIcon as XTwitter,
|
|
3493
|
+
YoutubeIcon as Youtube,
|
|
3494
|
+
YoutubeShortsIcon as YoutubeShorts,
|
|
3495
|
+
ZoomInIcon as ZoomIn,
|
|
3496
|
+
ZoomOutIcon as ZoomOut,
|
|
3497
|
+
icons,
|
|
3498
|
+
};
|
|
3499
|
+
|
|
3500
|
+
export {};
|