@openwebf/react-cupertino-ui 0.3.8 → 0.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,12 +1,41 @@
1
1
  import React from 'react';
2
2
  import { WebFElementWithMethods } from '@openwebf/react-core-ui';
3
3
 
4
- interface FlutterCupertinoToastOptions {
5
- content: string;
6
- type?: 'normal' | 'success' | 'warning' | 'error' | 'loading';
7
- duration?: number;
8
- }
9
- interface FlutterCupertinoToastProps {
4
+ interface FlutterCupertinoTabBarProps {
5
+ /**
6
+ * Zero-based active item index.
7
+ * Default: 0. Values outside range are clamped.
8
+ */
9
+ currentIndex?: number;
10
+ /**
11
+ * Background color of the tab bar.
12
+ * Hex string: '#RRGGBB' or '#AARRGGBB'.
13
+ */
14
+ backgroundColor?: string;
15
+ /**
16
+ * Color of the active item.
17
+ * Hex string: '#RRGGBB' or '#AARRGGBB'.
18
+ */
19
+ activeColor?: string;
20
+ /**
21
+ * Color of inactive items.
22
+ * Hex string: '#RRGGBB' or '#AARRGGBB'.
23
+ */
24
+ inactiveColor?: string;
25
+ /**
26
+ * Icon size in logical pixels.
27
+ * Default: 30.
28
+ */
29
+ iconSize?: number;
30
+ /**
31
+ * Removes the top border.
32
+ * Default: false.
33
+ */
34
+ noTopBorder?: boolean;
35
+ /**
36
+ * Fired when a different tab is selected. detail = selected index
37
+ */
38
+ onChange?: (event: CustomEvent<number>) => void;
10
39
  /**
11
40
  * HTML id attribute
12
41
  */
@@ -24,79 +53,81 @@ interface FlutterCupertinoToastProps {
24
53
  */
25
54
  className?: string;
26
55
  }
27
- /**
28
- * Element interface with methods accessible via ref
29
- * @example
30
- * ```tsx
31
- * const ref = useRef<FlutterCupertinoToastElement>(null);
32
- * // Call methods on the element
33
- * ref.current?.finishRefresh('success');
34
- * ```
35
- */
36
- interface FlutterCupertinoToastElement extends WebFElementWithMethods<{
37
- show(options: FlutterCupertinoToastOptions): void;
38
- close(): void;
39
- }> {
56
+ interface FlutterCupertinoTabBarElement extends WebFElementWithMethods<{}> {
40
57
  }
41
58
  /**
42
- * FlutterCupertinoToast - WebF FlutterCupertinoToast component
59
+ * Properties for <flutter-cupertino-tab-bar>
60
+ Bottom navigation bar with iOS styling.
43
61
  *
44
62
  * @example
45
63
  * ```tsx
46
- * const ref = useRef<FlutterCupertinoToastElement>(null);
47
64
  *
48
- * <FlutterCupertinoToast
49
- * ref={ref}
65
+ * <FlutterCupertinoTabBar
50
66
  * // Add props here
51
67
  * >
52
68
  * Content
53
- * </FlutterCupertinoToast>
54
- *
55
- * // Call methods on the element
56
- * ref.current?.finishRefresh('success');
69
+ * </FlutterCupertinoTabBar>
57
70
  * ```
58
71
  */
59
- declare const FlutterCupertinoToast: React.ForwardRefExoticComponent<FlutterCupertinoToastProps & {
72
+ declare const FlutterCupertinoTabBar: React.ForwardRefExoticComponent<FlutterCupertinoTabBarProps & {
60
73
  className?: string;
61
74
  style?: React.CSSProperties;
62
75
  children?: React.ReactNode;
63
- } & React.RefAttributes<FlutterCupertinoToastElement>>;
76
+ } & React.RefAttributes<FlutterCupertinoTabBarElement>>;
64
77
 
65
- interface FlutterCupertinoTimerPickerProps {
78
+ interface FlutterCupertinoTabBarItemProps {
66
79
  /**
67
- * mode property
68
- * @default undefined
80
+ * Label displayed under the icon for this item.
69
81
  */
70
- mode?: string;
82
+ title?: string;
71
83
  /**
72
- * initialTimerDuration property
73
- * @default undefined
84
+ * HTML id attribute
74
85
  */
75
- initialTimerDuration?: number;
86
+ id?: string;
76
87
  /**
77
- * minuteInterval property
78
- * @default undefined
88
+ * Additional CSS styles
79
89
  */
80
- minuteInterval?: number;
90
+ style?: React.CSSProperties;
81
91
  /**
82
- * secondInterval property
83
- * @default undefined
92
+ * Children elements
84
93
  */
85
- secondInterval?: number;
94
+ children?: React.ReactNode;
86
95
  /**
87
- * backgroundColor property
88
- * @default undefined
96
+ * Additional CSS class names
89
97
  */
90
- backgroundColor?: string;
98
+ className?: string;
99
+ }
100
+ interface FlutterCupertinoTabBarItemElement extends WebFElementWithMethods<{}> {
101
+ }
102
+ /**
103
+ * Properties for <flutter-cupertino-tab-bar-item>
104
+ Child item used within the TabBar; provides title and icon.
105
+ *
106
+ * @example
107
+ * ```tsx
108
+ *
109
+ * <FlutterCupertinoTabBarItem
110
+ * // Add props here
111
+ * >
112
+ * Content
113
+ * </FlutterCupertinoTabBarItem>
114
+ * ```
115
+ */
116
+ declare const FlutterCupertinoTabBarItem: React.ForwardRefExoticComponent<FlutterCupertinoTabBarItemProps & {
117
+ className?: string;
118
+ style?: React.CSSProperties;
119
+ children?: React.ReactNode;
120
+ } & React.RefAttributes<FlutterCupertinoTabBarItemElement>>;
121
+
122
+ interface FlutterCupertinoTabViewProps {
91
123
  /**
92
- * height property
93
- * @default undefined
124
+ * Default title used by the Navigator for the top-most route.
94
125
  */
95
- height?: number;
126
+ defaultTitle?: string;
96
127
  /**
97
- * change event handler
128
+ * Restoration scope ID to enable state restoration for this tab's Navigator.
98
129
  */
99
- onChange?: (event: CustomEvent<number>) => void;
130
+ restorationScopeId?: string;
100
131
  /**
101
132
  * HTML id attribute
102
133
  */
@@ -114,81 +145,1511 @@ interface FlutterCupertinoTimerPickerProps {
114
145
  */
115
146
  className?: string;
116
147
  }
117
- interface FlutterCupertinoTimerPickerElement extends WebFElementWithMethods<{}> {
148
+ interface FlutterCupertinoTabViewElement extends WebFElementWithMethods<{}> {
118
149
  }
119
150
  /**
120
- * FlutterCupertinoTimerPicker - WebF FlutterCupertinoTimerPicker component
151
+ * Properties for <flutter-cupertino-tab-view>
152
+ Provides an iOS-style per-tab Navigator. Used inside TabScaffold tabs.
121
153
  *
122
154
  * @example
123
155
  * ```tsx
124
156
  *
125
- * <FlutterCupertinoTimerPicker
157
+ * <FlutterCupertinoTabView
126
158
  * // Add props here
127
159
  * >
128
160
  * Content
129
- * </FlutterCupertinoTimerPicker>
161
+ * </FlutterCupertinoTabView>
130
162
  * ```
131
163
  */
132
- declare const FlutterCupertinoTimerPicker: React.ForwardRefExoticComponent<FlutterCupertinoTimerPickerProps & {
164
+ declare const FlutterCupertinoTabView: React.ForwardRefExoticComponent<FlutterCupertinoTabViewProps & {
133
165
  className?: string;
134
166
  style?: React.CSSProperties;
135
167
  children?: React.ReactNode;
136
- } & React.RefAttributes<FlutterCupertinoTimerPickerElement>>;
168
+ } & React.RefAttributes<FlutterCupertinoTabViewElement>>;
137
169
 
138
- interface FlutterCupertinoTextareaProps {
170
+ interface FlutterCupertinoTabScaffoldProps {
139
171
  /**
140
- * val property
141
- * @default undefined
172
+ * Zero-based index of the active tab.
173
+ * Default: 0. Values outside range are clamped.
142
174
  */
143
- val?: string;
175
+ currentIndex?: number;
144
176
  /**
145
- * placeholder property
146
- * @default undefined
177
+ * Whether to avoid bottom insets (e.g., when keyboard appears).
178
+ * Boolean attribute; presence means true.
179
+ * Default: true.
147
180
  */
148
- placeholder?: string;
181
+ resizeToAvoidBottomInset?: string;
149
182
  /**
150
- * disabled property
151
- * @default undefined
183
+ * Fired when the active tab changes. detail = current index
152
184
  */
153
- disabled?: boolean;
185
+ onChange?: (event: CustomEvent<number>) => void;
154
186
  /**
155
- * readonly property
156
- * @default undefined
187
+ * HTML id attribute
157
188
  */
158
- readonly?: boolean;
189
+ id?: string;
159
190
  /**
160
- * maxLength property
161
- * @default undefined
191
+ * Additional CSS styles
162
192
  */
163
- maxLength?: number;
193
+ style?: React.CSSProperties;
164
194
  /**
165
- * rows property
166
- * @default undefined
195
+ * Children elements
167
196
  */
168
- rows?: number;
197
+ children?: React.ReactNode;
169
198
  /**
170
- * showCount property
171
- * @default undefined
199
+ * Additional CSS class names
172
200
  */
173
- showCount?: boolean;
201
+ className?: string;
202
+ }
203
+ interface FlutterCupertinoTabScaffoldElement extends WebFElementWithMethods<{}> {
204
+ }
205
+ /**
206
+ * Properties for <flutter-cupertino-tab-scaffold>
207
+ A container that renders a bottom tab bar and tabbed content (iOS style).
208
+ *
209
+ * @example
210
+ * ```tsx
211
+ *
212
+ * <FlutterCupertinoTabScaffold
213
+ * // Add props here
214
+ * >
215
+ * Content
216
+ * </FlutterCupertinoTabScaffold>
217
+ * ```
218
+ */
219
+ declare const FlutterCupertinoTabScaffold: React.ForwardRefExoticComponent<FlutterCupertinoTabScaffoldProps & {
220
+ className?: string;
221
+ style?: React.CSSProperties;
222
+ children?: React.ReactNode;
223
+ } & React.RefAttributes<FlutterCupertinoTabScaffoldElement>>;
224
+ interface FlutterCupertinoTabScaffoldTabProps {
174
225
  /**
175
- * autoSize property
176
- * @default undefined
226
+ * Label shown in the tab bar for this tab.
177
227
  */
178
- autoSize?: boolean;
228
+ title?: string;
179
229
  /**
180
- * transparent property
181
- * @default undefined
230
+ * HTML id attribute
182
231
  */
183
- transparent?: boolean;
232
+ id?: string;
184
233
  /**
185
- * input event handler
234
+ * Additional CSS styles
186
235
  */
187
- onInput?: (event: CustomEvent<string>) => void;
236
+ style?: React.CSSProperties;
188
237
  /**
189
- * complete event handler
238
+ * Children elements
190
239
  */
191
- onComplete?: (event: Event) => void;
240
+ children?: React.ReactNode;
241
+ /**
242
+ * Additional CSS class names
243
+ */
244
+ className?: string;
245
+ }
246
+ interface FlutterCupertinoTabScaffoldTabElement extends WebFElementWithMethods<{}> {
247
+ }
248
+ /**
249
+ * Properties for <flutter-cupertino-tab-scaffold-tab>
250
+ Child item used within the TabScaffold; provides title and content for a tab.
251
+ *
252
+ * @example
253
+ * ```tsx
254
+ *
255
+ * <FlutterCupertinoTabScaffoldTab
256
+ * // Add props here
257
+ * >
258
+ * Content
259
+ * </FlutterCupertinoTabScaffoldTab>
260
+ * ```
261
+ */
262
+ declare const FlutterCupertinoTabScaffoldTab: React.ForwardRefExoticComponent<FlutterCupertinoTabScaffoldTabProps & {
263
+ className?: string;
264
+ style?: React.CSSProperties;
265
+ children?: React.ReactNode;
266
+ } & React.RefAttributes<FlutterCupertinoTabScaffoldTabElement>>;
267
+
268
+ declare enum CupertinoIcons {
269
+ add = "add",
270
+ add_circled = "add_circled",
271
+ add_circled_solid = "add_circled_solid",
272
+ airplane = "airplane",
273
+ alarm = "alarm",
274
+ alarm_fill = "alarm_fill",
275
+ alt = "alt",
276
+ ant = "ant",
277
+ ant_circle = "ant_circle",
278
+ ant_circle_fill = "ant_circle_fill",
279
+ ant_fill = "ant_fill",
280
+ antenna_radiowaves_left_right = "antenna_radiowaves_left_right",
281
+ app = "app",
282
+ app_badge = "app_badge",
283
+ app_badge_fill = "app_badge_fill",
284
+ app_fill = "app_fill",
285
+ archivebox = "archivebox",
286
+ archivebox_fill = "archivebox_fill",
287
+ arrow_2_circlepath = "arrow_2_circlepath",
288
+ arrow_2_circlepath_circle = "arrow_2_circlepath_circle",
289
+ arrow_2_circlepath_circle_fill = "arrow_2_circlepath_circle_fill",
290
+ arrow_2_squarepath = "arrow_2_squarepath",
291
+ arrow_3_trianglepath = "arrow_3_trianglepath",
292
+ arrow_branch = "arrow_branch",
293
+ arrow_clockwise = "arrow_clockwise",
294
+ arrow_clockwise_circle = "arrow_clockwise_circle",
295
+ arrow_clockwise_circle_fill = "arrow_clockwise_circle_fill",
296
+ arrow_counterclockwise = "arrow_counterclockwise",
297
+ arrow_counterclockwise_circle = "arrow_counterclockwise_circle",
298
+ arrow_counterclockwise_circle_fill = "arrow_counterclockwise_circle_fill",
299
+ arrow_down = "arrow_down",
300
+ arrow_down_circle = "arrow_down_circle",
301
+ arrow_down_circle_fill = "arrow_down_circle_fill",
302
+ arrow_down_doc = "arrow_down_doc",
303
+ arrow_down_doc_fill = "arrow_down_doc_fill",
304
+ arrow_down_left = "arrow_down_left",
305
+ arrow_down_left_circle = "arrow_down_left_circle",
306
+ arrow_down_left_circle_fill = "arrow_down_left_circle_fill",
307
+ arrow_down_left_square = "arrow_down_left_square",
308
+ arrow_down_left_square_fill = "arrow_down_left_square_fill",
309
+ arrow_down_right = "arrow_down_right",
310
+ arrow_down_right_arrow_up_left = "arrow_down_right_arrow_up_left",
311
+ arrow_down_right_circle = "arrow_down_right_circle",
312
+ arrow_down_right_circle_fill = "arrow_down_right_circle_fill",
313
+ arrow_down_right_square = "arrow_down_right_square",
314
+ arrow_down_right_square_fill = "arrow_down_right_square_fill",
315
+ arrow_down_square = "arrow_down_square",
316
+ arrow_down_square_fill = "arrow_down_square_fill",
317
+ arrow_down_to_line = "arrow_down_to_line",
318
+ arrow_down_to_line_alt = "arrow_down_to_line_alt",
319
+ arrow_left = "arrow_left",
320
+ arrow_left_circle = "arrow_left_circle",
321
+ arrow_left_circle_fill = "arrow_left_circle_fill",
322
+ arrow_left_right = "arrow_left_right",
323
+ arrow_left_right_circle = "arrow_left_right_circle",
324
+ arrow_left_right_circle_fill = "arrow_left_right_circle_fill",
325
+ arrow_left_right_square = "arrow_left_right_square",
326
+ arrow_left_right_square_fill = "arrow_left_right_square_fill",
327
+ arrow_left_square = "arrow_left_square",
328
+ arrow_left_square_fill = "arrow_left_square_fill",
329
+ arrow_left_to_line = "arrow_left_to_line",
330
+ arrow_left_to_line_alt = "arrow_left_to_line_alt",
331
+ arrow_merge = "arrow_merge",
332
+ arrow_right = "arrow_right",
333
+ arrow_right_arrow_left = "arrow_right_arrow_left",
334
+ arrow_right_arrow_left_circle = "arrow_right_arrow_left_circle",
335
+ arrow_right_arrow_left_circle_fill = "arrow_right_arrow_left_circle_fill",
336
+ arrow_right_arrow_left_square = "arrow_right_arrow_left_square",
337
+ arrow_right_arrow_left_square_fill = "arrow_right_arrow_left_square_fill",
338
+ arrow_right_circle = "arrow_right_circle",
339
+ arrow_right_circle_fill = "arrow_right_circle_fill",
340
+ arrow_right_square = "arrow_right_square",
341
+ arrow_right_square_fill = "arrow_right_square_fill",
342
+ arrow_right_to_line = "arrow_right_to_line",
343
+ arrow_right_to_line_alt = "arrow_right_to_line_alt",
344
+ arrow_swap = "arrow_swap",
345
+ arrow_turn_down_left = "arrow_turn_down_left",
346
+ arrow_turn_down_right = "arrow_turn_down_right",
347
+ arrow_turn_left_down = "arrow_turn_left_down",
348
+ arrow_turn_left_up = "arrow_turn_left_up",
349
+ arrow_turn_right_down = "arrow_turn_right_down",
350
+ arrow_turn_right_up = "arrow_turn_right_up",
351
+ arrow_turn_up_left = "arrow_turn_up_left",
352
+ arrow_turn_up_right = "arrow_turn_up_right",
353
+ arrow_up = "arrow_up",
354
+ arrow_up_arrow_down = "arrow_up_arrow_down",
355
+ arrow_up_arrow_down_circle = "arrow_up_arrow_down_circle",
356
+ arrow_up_arrow_down_circle_fill = "arrow_up_arrow_down_circle_fill",
357
+ arrow_up_arrow_down_square = "arrow_up_arrow_down_square",
358
+ arrow_up_arrow_down_square_fill = "arrow_up_arrow_down_square_fill",
359
+ arrow_up_bin = "arrow_up_bin",
360
+ arrow_up_bin_fill = "arrow_up_bin_fill",
361
+ arrow_up_circle = "arrow_up_circle",
362
+ arrow_up_circle_fill = "arrow_up_circle_fill",
363
+ arrow_up_doc = "arrow_up_doc",
364
+ arrow_up_doc_fill = "arrow_up_doc_fill",
365
+ arrow_up_down = "arrow_up_down",
366
+ arrow_up_down_circle = "arrow_up_down_circle",
367
+ arrow_up_down_circle_fill = "arrow_up_down_circle_fill",
368
+ arrow_up_down_square = "arrow_up_down_square",
369
+ arrow_up_down_square_fill = "arrow_up_down_square_fill",
370
+ arrow_up_left = "arrow_up_left",
371
+ arrow_up_left_arrow_down_right = "arrow_up_left_arrow_down_right",
372
+ arrow_up_left_circle = "arrow_up_left_circle",
373
+ arrow_up_left_circle_fill = "arrow_up_left_circle_fill",
374
+ arrow_up_left_square = "arrow_up_left_square",
375
+ arrow_up_left_square_fill = "arrow_up_left_square_fill",
376
+ arrow_up_right = "arrow_up_right",
377
+ arrow_up_right_circle = "arrow_up_right_circle",
378
+ arrow_up_right_circle_fill = "arrow_up_right_circle_fill",
379
+ arrow_up_right_diamond = "arrow_up_right_diamond",
380
+ arrow_up_right_diamond_fill = "arrow_up_right_diamond_fill",
381
+ arrow_up_right_square = "arrow_up_right_square",
382
+ arrow_up_right_square_fill = "arrow_up_right_square_fill",
383
+ arrow_up_square = "arrow_up_square",
384
+ arrow_up_square_fill = "arrow_up_square_fill",
385
+ arrow_up_to_line = "arrow_up_to_line",
386
+ arrow_up_to_line_alt = "arrow_up_to_line_alt",
387
+ arrow_uturn_down = "arrow_uturn_down",
388
+ arrow_uturn_down_circle = "arrow_uturn_down_circle",
389
+ arrow_uturn_down_circle_fill = "arrow_uturn_down_circle_fill",
390
+ arrow_uturn_down_square = "arrow_uturn_down_square",
391
+ arrow_uturn_down_square_fill = "arrow_uturn_down_square_fill",
392
+ arrow_uturn_left = "arrow_uturn_left",
393
+ arrow_uturn_left_circle = "arrow_uturn_left_circle",
394
+ arrow_uturn_left_circle_fill = "arrow_uturn_left_circle_fill",
395
+ arrow_uturn_left_square = "arrow_uturn_left_square",
396
+ arrow_uturn_left_square_fill = "arrow_uturn_left_square_fill",
397
+ arrow_uturn_right = "arrow_uturn_right",
398
+ arrow_uturn_right_circle = "arrow_uturn_right_circle",
399
+ arrow_uturn_right_circle_fill = "arrow_uturn_right_circle_fill",
400
+ arrow_uturn_right_square = "arrow_uturn_right_square",
401
+ arrow_uturn_right_square_fill = "arrow_uturn_right_square_fill",
402
+ arrow_uturn_up = "arrow_uturn_up",
403
+ arrow_uturn_up_circle = "arrow_uturn_up_circle",
404
+ arrow_uturn_up_circle_fill = "arrow_uturn_up_circle_fill",
405
+ arrow_uturn_up_square = "arrow_uturn_up_square",
406
+ arrow_uturn_up_square_fill = "arrow_uturn_up_square_fill",
407
+ arrowshape_turn_up_left = "arrowshape_turn_up_left",
408
+ arrowshape_turn_up_left_2 = "arrowshape_turn_up_left_2",
409
+ arrowshape_turn_up_left_2_fill = "arrowshape_turn_up_left_2_fill",
410
+ arrowshape_turn_up_left_circle = "arrowshape_turn_up_left_circle",
411
+ arrowshape_turn_up_left_circle_fill = "arrowshape_turn_up_left_circle_fill",
412
+ arrowshape_turn_up_left_fill = "arrowshape_turn_up_left_fill",
413
+ arrowshape_turn_up_right = "arrowshape_turn_up_right",
414
+ arrowshape_turn_up_right_circle = "arrowshape_turn_up_right_circle",
415
+ arrowshape_turn_up_right_circle_fill = "arrowshape_turn_up_right_circle_fill",
416
+ arrowshape_turn_up_right_fill = "arrowshape_turn_up_right_fill",
417
+ arrowtriangle_down = "arrowtriangle_down",
418
+ arrowtriangle_down_circle = "arrowtriangle_down_circle",
419
+ arrowtriangle_down_circle_fill = "arrowtriangle_down_circle_fill",
420
+ arrowtriangle_down_fill = "arrowtriangle_down_fill",
421
+ arrowtriangle_down_square = "arrowtriangle_down_square",
422
+ arrowtriangle_down_square_fill = "arrowtriangle_down_square_fill",
423
+ arrowtriangle_left = "arrowtriangle_left",
424
+ arrowtriangle_left_circle = "arrowtriangle_left_circle",
425
+ arrowtriangle_left_circle_fill = "arrowtriangle_left_circle_fill",
426
+ arrowtriangle_left_fill = "arrowtriangle_left_fill",
427
+ arrowtriangle_left_square = "arrowtriangle_left_square",
428
+ arrowtriangle_left_square_fill = "arrowtriangle_left_square_fill",
429
+ arrowtriangle_right = "arrowtriangle_right",
430
+ arrowtriangle_right_circle = "arrowtriangle_right_circle",
431
+ arrowtriangle_right_circle_fill = "arrowtriangle_right_circle_fill",
432
+ arrowtriangle_right_fill = "arrowtriangle_right_fill",
433
+ arrowtriangle_right_square = "arrowtriangle_right_square",
434
+ arrowtriangle_right_square_fill = "arrowtriangle_right_square_fill",
435
+ arrowtriangle_up = "arrowtriangle_up",
436
+ arrowtriangle_up_circle = "arrowtriangle_up_circle",
437
+ arrowtriangle_up_circle_fill = "arrowtriangle_up_circle_fill",
438
+ arrowtriangle_up_fill = "arrowtriangle_up_fill",
439
+ arrowtriangle_up_square = "arrowtriangle_up_square",
440
+ arrowtriangle_up_square_fill = "arrowtriangle_up_square_fill",
441
+ asterisk_circle = "asterisk_circle",
442
+ asterisk_circle_fill = "asterisk_circle_fill",
443
+ at = "at",
444
+ at_badge_minus = "at_badge_minus",
445
+ at_badge_plus = "at_badge_plus",
446
+ at_circle = "at_circle",
447
+ at_circle_fill = "at_circle_fill",
448
+ back = "back",
449
+ backward = "backward",
450
+ backward_end = "backward_end",
451
+ backward_end_alt = "backward_end_alt",
452
+ backward_end_alt_fill = "backward_end_alt_fill",
453
+ backward_end_fill = "backward_end_fill",
454
+ backward_fill = "backward_fill",
455
+ badge_plus_radiowaves_right = "badge_plus_radiowaves_right",
456
+ bag = "bag",
457
+ bag_badge_minus = "bag_badge_minus",
458
+ bag_badge_plus = "bag_badge_plus",
459
+ bag_fill = "bag_fill",
460
+ bag_fill_badge_minus = "bag_fill_badge_minus",
461
+ bag_fill_badge_plus = "bag_fill_badge_plus",
462
+ bandage = "bandage",
463
+ bandage_fill = "bandage_fill",
464
+ barcode = "barcode",
465
+ barcode_viewfinder = "barcode_viewfinder",
466
+ bars = "bars",
467
+ battery_0 = "battery_0",
468
+ battery_100 = "battery_100",
469
+ battery_25 = "battery_25",
470
+ battery_25_percent = "battery_25_percent",
471
+ battery_75_percent = "battery_75_percent",
472
+ battery_charging = "battery_charging",
473
+ battery_empty = "battery_empty",
474
+ battery_full = "battery_full",
475
+ bed_double = "bed_double",
476
+ bed_double_fill = "bed_double_fill",
477
+ bell = "bell",
478
+ bell_circle = "bell_circle",
479
+ bell_circle_fill = "bell_circle_fill",
480
+ bell_fill = "bell_fill",
481
+ bell_slash = "bell_slash",
482
+ bell_slash_fill = "bell_slash_fill",
483
+ bell_solid = "bell_solid",
484
+ bin_xmark = "bin_xmark",
485
+ bin_xmark_fill = "bin_xmark_fill",
486
+ bitcoin = "bitcoin",
487
+ bitcoin_circle = "bitcoin_circle",
488
+ bitcoin_circle_fill = "bitcoin_circle_fill",
489
+ bluetooth = "bluetooth",
490
+ bold = "bold",
491
+ bold_italic_underline = "bold_italic_underline",
492
+ bold_underline = "bold_underline",
493
+ bolt = "bolt",
494
+ bolt_badge_a = "bolt_badge_a",
495
+ bolt_badge_a_fill = "bolt_badge_a_fill",
496
+ bolt_circle = "bolt_circle",
497
+ bolt_circle_fill = "bolt_circle_fill",
498
+ bolt_fill = "bolt_fill",
499
+ bolt_horizontal = "bolt_horizontal",
500
+ bolt_horizontal_circle = "bolt_horizontal_circle",
501
+ bolt_horizontal_circle_fill = "bolt_horizontal_circle_fill",
502
+ bolt_horizontal_fill = "bolt_horizontal_fill",
503
+ bolt_slash = "bolt_slash",
504
+ bolt_slash_fill = "bolt_slash_fill",
505
+ book = "book",
506
+ book_circle = "book_circle",
507
+ book_circle_fill = "book_circle_fill",
508
+ book_fill = "book_fill",
509
+ book_solid = "book_solid",
510
+ bookmark = "bookmark",
511
+ bookmark_fill = "bookmark_fill",
512
+ bookmark_solid = "bookmark_solid",
513
+ briefcase = "briefcase",
514
+ briefcase_fill = "briefcase_fill",
515
+ brightness = "brightness",
516
+ brightness_solid = "brightness_solid",
517
+ bubble_left = "bubble_left",
518
+ bubble_left_bubble_right = "bubble_left_bubble_right",
519
+ bubble_left_bubble_right_fill = "bubble_left_bubble_right_fill",
520
+ bubble_left_fill = "bubble_left_fill",
521
+ bubble_middle_bottom = "bubble_middle_bottom",
522
+ bubble_middle_bottom_fill = "bubble_middle_bottom_fill",
523
+ bubble_middle_top = "bubble_middle_top",
524
+ bubble_middle_top_fill = "bubble_middle_top_fill",
525
+ bubble_right = "bubble_right",
526
+ bubble_right_fill = "bubble_right_fill",
527
+ building_2_fill = "building_2_fill",
528
+ burn = "burn",
529
+ burst = "burst",
530
+ burst_fill = "burst_fill",
531
+ bus = "bus",
532
+ calendar = "calendar",
533
+ calendar_badge_minus = "calendar_badge_minus",
534
+ calendar_badge_plus = "calendar_badge_plus",
535
+ calendar_circle = "calendar_circle",
536
+ calendar_circle_fill = "calendar_circle_fill",
537
+ calendar_today = "calendar_today",
538
+ camera = "camera",
539
+ camera_circle = "camera_circle",
540
+ camera_circle_fill = "camera_circle_fill",
541
+ camera_fill = "camera_fill",
542
+ camera_on_rectangle = "camera_on_rectangle",
543
+ camera_on_rectangle_fill = "camera_on_rectangle_fill",
544
+ camera_rotate = "camera_rotate",
545
+ camera_rotate_fill = "camera_rotate_fill",
546
+ camera_viewfinder = "camera_viewfinder",
547
+ capslock = "capslock",
548
+ capslock_fill = "capslock_fill",
549
+ capsule = "capsule",
550
+ capsule_fill = "capsule_fill",
551
+ captions_bubble = "captions_bubble",
552
+ captions_bubble_fill = "captions_bubble_fill",
553
+ car = "car",
554
+ car_detailed = "car_detailed",
555
+ car_fill = "car_fill",
556
+ cart = "cart",
557
+ cart_badge_minus = "cart_badge_minus",
558
+ cart_badge_plus = "cart_badge_plus",
559
+ cart_fill = "cart_fill",
560
+ cart_fill_badge_minus = "cart_fill_badge_minus",
561
+ cart_fill_badge_plus = "cart_fill_badge_plus",
562
+ chart_bar = "chart_bar",
563
+ chart_bar_alt_fill = "chart_bar_alt_fill",
564
+ chart_bar_circle = "chart_bar_circle",
565
+ chart_bar_circle_fill = "chart_bar_circle_fill",
566
+ chart_bar_fill = "chart_bar_fill",
567
+ chart_bar_square = "chart_bar_square",
568
+ chart_bar_square_fill = "chart_bar_square_fill",
569
+ chart_pie = "chart_pie",
570
+ chart_pie_fill = "chart_pie_fill",
571
+ chat_bubble = "chat_bubble",
572
+ chat_bubble_2 = "chat_bubble_2",
573
+ chat_bubble_2_fill = "chat_bubble_2_fill",
574
+ chat_bubble_fill = "chat_bubble_fill",
575
+ chat_bubble_text = "chat_bubble_text",
576
+ chat_bubble_text_fill = "chat_bubble_text_fill",
577
+ check_mark = "check_mark",
578
+ check_mark_circled = "check_mark_circled",
579
+ check_mark_circled_solid = "check_mark_circled_solid",
580
+ checkmark = "checkmark",
581
+ checkmark_alt = "checkmark_alt",
582
+ checkmark_alt_circle = "checkmark_alt_circle",
583
+ checkmark_alt_circle_fill = "checkmark_alt_circle_fill",
584
+ checkmark_circle = "checkmark_circle",
585
+ checkmark_circle_fill = "checkmark_circle_fill",
586
+ checkmark_rectangle = "checkmark_rectangle",
587
+ checkmark_rectangle_fill = "checkmark_rectangle_fill",
588
+ checkmark_seal = "checkmark_seal",
589
+ checkmark_seal_fill = "checkmark_seal_fill",
590
+ checkmark_shield = "checkmark_shield",
591
+ checkmark_shield_fill = "checkmark_shield_fill",
592
+ checkmark_square = "checkmark_square",
593
+ checkmark_square_fill = "checkmark_square_fill",
594
+ chevron_back = "chevron_back",
595
+ chevron_compact_down = "chevron_compact_down",
596
+ chevron_compact_left = "chevron_compact_left",
597
+ chevron_compact_right = "chevron_compact_right",
598
+ chevron_compact_up = "chevron_compact_up",
599
+ chevron_down = "chevron_down",
600
+ chevron_down_circle = "chevron_down_circle",
601
+ chevron_down_circle_fill = "chevron_down_circle_fill",
602
+ chevron_down_square = "chevron_down_square",
603
+ chevron_down_square_fill = "chevron_down_square_fill",
604
+ chevron_forward = "chevron_forward",
605
+ chevron_left = "chevron_left",
606
+ chevron_left_2 = "chevron_left_2",
607
+ chevron_left_circle = "chevron_left_circle",
608
+ chevron_left_circle_fill = "chevron_left_circle_fill",
609
+ chevron_left_slash_chevron_right = "chevron_left_slash_chevron_right",
610
+ chevron_left_square = "chevron_left_square",
611
+ chevron_left_square_fill = "chevron_left_square_fill",
612
+ chevron_right = "chevron_right",
613
+ chevron_right_2 = "chevron_right_2",
614
+ chevron_right_circle = "chevron_right_circle",
615
+ chevron_right_circle_fill = "chevron_right_circle_fill",
616
+ chevron_right_square = "chevron_right_square",
617
+ chevron_right_square_fill = "chevron_right_square_fill",
618
+ chevron_up = "chevron_up",
619
+ chevron_up_chevron_down = "chevron_up_chevron_down",
620
+ chevron_up_circle = "chevron_up_circle",
621
+ chevron_up_circle_fill = "chevron_up_circle_fill",
622
+ chevron_up_square = "chevron_up_square",
623
+ chevron_up_square_fill = "chevron_up_square_fill",
624
+ circle = "circle",
625
+ circle_bottomthird_split = "circle_bottomthird_split",
626
+ circle_fill = "circle_fill",
627
+ circle_filled = "circle_filled",
628
+ circle_grid_3x3 = "circle_grid_3x3",
629
+ circle_grid_3x3_fill = "circle_grid_3x3_fill",
630
+ circle_grid_hex = "circle_grid_hex",
631
+ circle_grid_hex_fill = "circle_grid_hex_fill",
632
+ circle_lefthalf_fill = "circle_lefthalf_fill",
633
+ circle_righthalf_fill = "circle_righthalf_fill",
634
+ clear = "clear",
635
+ clear_circled = "clear_circled",
636
+ clear_circled_solid = "clear_circled_solid",
637
+ clear_fill = "clear_fill",
638
+ clear_thick = "clear_thick",
639
+ clear_thick_circled = "clear_thick_circled",
640
+ clock = "clock",
641
+ clock_fill = "clock_fill",
642
+ clock_solid = "clock_solid",
643
+ cloud = "cloud",
644
+ cloud_bolt = "cloud_bolt",
645
+ cloud_bolt_fill = "cloud_bolt_fill",
646
+ cloud_bolt_rain = "cloud_bolt_rain",
647
+ cloud_bolt_rain_fill = "cloud_bolt_rain_fill",
648
+ cloud_download = "cloud_download",
649
+ cloud_download_fill = "cloud_download_fill",
650
+ cloud_drizzle = "cloud_drizzle",
651
+ cloud_drizzle_fill = "cloud_drizzle_fill",
652
+ cloud_fill = "cloud_fill",
653
+ cloud_fog = "cloud_fog",
654
+ cloud_fog_fill = "cloud_fog_fill",
655
+ cloud_hail = "cloud_hail",
656
+ cloud_hail_fill = "cloud_hail_fill",
657
+ cloud_heavyrain = "cloud_heavyrain",
658
+ cloud_heavyrain_fill = "cloud_heavyrain_fill",
659
+ cloud_moon = "cloud_moon",
660
+ cloud_moon_bolt = "cloud_moon_bolt",
661
+ cloud_moon_bolt_fill = "cloud_moon_bolt_fill",
662
+ cloud_moon_fill = "cloud_moon_fill",
663
+ cloud_moon_rain = "cloud_moon_rain",
664
+ cloud_moon_rain_fill = "cloud_moon_rain_fill",
665
+ cloud_rain = "cloud_rain",
666
+ cloud_rain_fill = "cloud_rain_fill",
667
+ cloud_sleet = "cloud_sleet",
668
+ cloud_sleet_fill = "cloud_sleet_fill",
669
+ cloud_snow = "cloud_snow",
670
+ cloud_snow_fill = "cloud_snow_fill",
671
+ cloud_sun = "cloud_sun",
672
+ cloud_sun_bolt = "cloud_sun_bolt",
673
+ cloud_sun_bolt_fill = "cloud_sun_bolt_fill",
674
+ cloud_sun_fill = "cloud_sun_fill",
675
+ cloud_sun_rain = "cloud_sun_rain",
676
+ cloud_sun_rain_fill = "cloud_sun_rain_fill",
677
+ cloud_upload = "cloud_upload",
678
+ cloud_upload_fill = "cloud_upload_fill",
679
+ collections = "collections",
680
+ collections_solid = "collections_solid",
681
+ color_filter = "color_filter",
682
+ color_filter_fill = "color_filter_fill",
683
+ command = "command",
684
+ compass = "compass",
685
+ compass_fill = "compass_fill",
686
+ control = "control",
687
+ conversation_bubble = "conversation_bubble",
688
+ create = "create",
689
+ create_solid = "create_solid",
690
+ creditcard = "creditcard",
691
+ creditcard_fill = "creditcard_fill",
692
+ crop = "crop",
693
+ crop_rotate = "crop_rotate",
694
+ cube = "cube",
695
+ cube_box = "cube_box",
696
+ cube_box_fill = "cube_box_fill",
697
+ cube_fill = "cube_fill",
698
+ cursor_rays = "cursor_rays",
699
+ decrease_indent = "decrease_indent",
700
+ decrease_quotelevel = "decrease_quotelevel",
701
+ delete = "delete",
702
+ delete_left = "delete_left",
703
+ delete_left_fill = "delete_left_fill",
704
+ delete_right = "delete_right",
705
+ delete_right_fill = "delete_right_fill",
706
+ delete_simple = "delete_simple",
707
+ delete_solid = "delete_solid",
708
+ desktopcomputer = "desktopcomputer",
709
+ device_desktop = "device_desktop",
710
+ device_laptop = "device_laptop",
711
+ device_phone_landscape = "device_phone_landscape",
712
+ device_phone_portrait = "device_phone_portrait",
713
+ dial = "dial",
714
+ dial_fill = "dial_fill",
715
+ divide = "divide",
716
+ divide_circle = "divide_circle",
717
+ divide_circle_fill = "divide_circle_fill",
718
+ divide_square = "divide_square",
719
+ divide_square_fill = "divide_square_fill",
720
+ doc = "doc",
721
+ doc_append = "doc_append",
722
+ doc_chart = "doc_chart",
723
+ doc_chart_fill = "doc_chart_fill",
724
+ doc_checkmark = "doc_checkmark",
725
+ doc_checkmark_fill = "doc_checkmark_fill",
726
+ doc_circle = "doc_circle",
727
+ doc_circle_fill = "doc_circle_fill",
728
+ doc_fill = "doc_fill",
729
+ doc_on_clipboard = "doc_on_clipboard",
730
+ doc_on_clipboard_fill = "doc_on_clipboard_fill",
731
+ doc_on_doc = "doc_on_doc",
732
+ doc_on_doc_fill = "doc_on_doc_fill",
733
+ doc_person = "doc_person",
734
+ doc_person_fill = "doc_person_fill",
735
+ doc_plaintext = "doc_plaintext",
736
+ doc_richtext = "doc_richtext",
737
+ doc_text = "doc_text",
738
+ doc_text_fill = "doc_text_fill",
739
+ doc_text_search = "doc_text_search",
740
+ doc_text_viewfinder = "doc_text_viewfinder",
741
+ dot_radiowaves_left_right = "dot_radiowaves_left_right",
742
+ dot_radiowaves_right = "dot_radiowaves_right",
743
+ dot_square = "dot_square",
744
+ dot_square_fill = "dot_square_fill",
745
+ double_music_note = "double_music_note",
746
+ down_arrow = "down_arrow",
747
+ download_circle = "download_circle",
748
+ download_circle_fill = "download_circle_fill",
749
+ drop = "drop",
750
+ drop_fill = "drop_fill",
751
+ drop_triangle = "drop_triangle",
752
+ drop_triangle_fill = "drop_triangle_fill",
753
+ ear = "ear",
754
+ eject = "eject",
755
+ eject_fill = "eject_fill",
756
+ ellipses_bubble = "ellipses_bubble",
757
+ ellipses_bubble_fill = "ellipses_bubble_fill",
758
+ ellipsis = "ellipsis",
759
+ ellipsis_circle = "ellipsis_circle",
760
+ ellipsis_circle_fill = "ellipsis_circle_fill",
761
+ ellipsis_vertical = "ellipsis_vertical",
762
+ ellipsis_vertical_circle = "ellipsis_vertical_circle",
763
+ ellipsis_vertical_circle_fill = "ellipsis_vertical_circle_fill",
764
+ envelope = "envelope",
765
+ envelope_badge = "envelope_badge",
766
+ envelope_badge_fill = "envelope_badge_fill",
767
+ envelope_circle = "envelope_circle",
768
+ envelope_circle_fill = "envelope_circle_fill",
769
+ envelope_fill = "envelope_fill",
770
+ envelope_open = "envelope_open",
771
+ envelope_open_fill = "envelope_open_fill",
772
+ equal = "equal",
773
+ equal_circle = "equal_circle",
774
+ equal_circle_fill = "equal_circle_fill",
775
+ equal_square = "equal_square",
776
+ equal_square_fill = "equal_square_fill",
777
+ escape = "escape",
778
+ exclamationmark = "exclamationmark",
779
+ exclamationmark_bubble = "exclamationmark_bubble",
780
+ exclamationmark_bubble_fill = "exclamationmark_bubble_fill",
781
+ exclamationmark_circle = "exclamationmark_circle",
782
+ exclamationmark_circle_fill = "exclamationmark_circle_fill",
783
+ exclamationmark_octagon = "exclamationmark_octagon",
784
+ exclamationmark_octagon_fill = "exclamationmark_octagon_fill",
785
+ exclamationmark_shield = "exclamationmark_shield",
786
+ exclamationmark_shield_fill = "exclamationmark_shield_fill",
787
+ exclamationmark_square = "exclamationmark_square",
788
+ exclamationmark_square_fill = "exclamationmark_square_fill",
789
+ exclamationmark_triangle = "exclamationmark_triangle",
790
+ exclamationmark_triangle_fill = "exclamationmark_triangle_fill",
791
+ eye = "eye",
792
+ eye_fill = "eye_fill",
793
+ eye_slash = "eye_slash",
794
+ eye_slash_fill = "eye_slash_fill",
795
+ eye_solid = "eye_solid",
796
+ eyedropper = "eyedropper",
797
+ eyedropper_full = "eyedropper_full",
798
+ eyedropper_halffull = "eyedropper_halffull",
799
+ eyeglasses = "eyeglasses",
800
+ f_cursive = "f_cursive",
801
+ f_cursive_circle = "f_cursive_circle",
802
+ f_cursive_circle_fill = "f_cursive_circle_fill",
803
+ film = "film",
804
+ film_fill = "film_fill",
805
+ flag = "flag",
806
+ flag_circle = "flag_circle",
807
+ flag_circle_fill = "flag_circle_fill",
808
+ flag_fill = "flag_fill",
809
+ flag_slash = "flag_slash",
810
+ flag_slash_fill = "flag_slash_fill",
811
+ flame = "flame",
812
+ flame_fill = "flame_fill",
813
+ floppy_disk = "floppy_disk",
814
+ flowchart = "flowchart",
815
+ flowchart_fill = "flowchart_fill",
816
+ folder = "folder",
817
+ folder_badge_minus = "folder_badge_minus",
818
+ folder_badge_person_crop = "folder_badge_person_crop",
819
+ folder_badge_plus = "folder_badge_plus",
820
+ folder_circle = "folder_circle",
821
+ folder_circle_fill = "folder_circle_fill",
822
+ folder_fill = "folder_fill",
823
+ folder_fill_badge_minus = "folder_fill_badge_minus",
824
+ folder_fill_badge_person_crop = "folder_fill_badge_person_crop",
825
+ folder_fill_badge_plus = "folder_fill_badge_plus",
826
+ folder_open = "folder_open",
827
+ folder_solid = "folder_solid",
828
+ forward = "forward",
829
+ forward_end = "forward_end",
830
+ forward_end_alt = "forward_end_alt",
831
+ forward_end_alt_fill = "forward_end_alt_fill",
832
+ forward_end_fill = "forward_end_fill",
833
+ forward_fill = "forward_fill",
834
+ fullscreen = "fullscreen",
835
+ fullscreen_exit = "fullscreen_exit",
836
+ function = "function",
837
+ fx = "fx",
838
+ game_controller = "game_controller",
839
+ game_controller_solid = "game_controller_solid",
840
+ gamecontroller = "gamecontroller",
841
+ gamecontroller_alt_fill = "gamecontroller_alt_fill",
842
+ gamecontroller_fill = "gamecontroller_fill",
843
+ gauge = "gauge",
844
+ gauge_badge_minus = "gauge_badge_minus",
845
+ gauge_badge_plus = "gauge_badge_plus",
846
+ gear = "gear",
847
+ gear_alt = "gear_alt",
848
+ gear_alt_fill = "gear_alt_fill",
849
+ gear_big = "gear_big",
850
+ gear_solid = "gear_solid",
851
+ gift = "gift",
852
+ gift_alt = "gift_alt",
853
+ gift_alt_fill = "gift_alt_fill",
854
+ gift_fill = "gift_fill",
855
+ globe = "globe",
856
+ gobackward = "gobackward",
857
+ gobackward_10 = "gobackward_10",
858
+ gobackward_15 = "gobackward_15",
859
+ gobackward_30 = "gobackward_30",
860
+ gobackward_45 = "gobackward_45",
861
+ gobackward_60 = "gobackward_60",
862
+ gobackward_75 = "gobackward_75",
863
+ gobackward_90 = "gobackward_90",
864
+ gobackward_minus = "gobackward_minus",
865
+ goforward = "goforward",
866
+ goforward_10 = "goforward_10",
867
+ goforward_15 = "goforward_15",
868
+ goforward_30 = "goforward_30",
869
+ goforward_45 = "goforward_45",
870
+ goforward_60 = "goforward_60",
871
+ goforward_75 = "goforward_75",
872
+ goforward_90 = "goforward_90",
873
+ goforward_plus = "goforward_plus",
874
+ graph_circle = "graph_circle",
875
+ graph_circle_fill = "graph_circle_fill",
876
+ graph_square = "graph_square",
877
+ graph_square_fill = "graph_square_fill",
878
+ greaterthan = "greaterthan",
879
+ greaterthan_circle = "greaterthan_circle",
880
+ greaterthan_circle_fill = "greaterthan_circle_fill",
881
+ greaterthan_square = "greaterthan_square",
882
+ greaterthan_square_fill = "greaterthan_square_fill",
883
+ grid = "grid",
884
+ grid_circle = "grid_circle",
885
+ grid_circle_fill = "grid_circle_fill",
886
+ group = "group",
887
+ group_solid = "group_solid",
888
+ guitars = "guitars",
889
+ hammer = "hammer",
890
+ hammer_fill = "hammer_fill",
891
+ hand_draw = "hand_draw",
892
+ hand_draw_fill = "hand_draw_fill",
893
+ hand_point_left = "hand_point_left",
894
+ hand_point_left_fill = "hand_point_left_fill",
895
+ hand_point_right = "hand_point_right",
896
+ hand_point_right_fill = "hand_point_right_fill",
897
+ hand_raised = "hand_raised",
898
+ hand_raised_fill = "hand_raised_fill",
899
+ hand_raised_slash = "hand_raised_slash",
900
+ hand_raised_slash_fill = "hand_raised_slash_fill",
901
+ hand_thumbsdown = "hand_thumbsdown",
902
+ hand_thumbsdown_fill = "hand_thumbsdown_fill",
903
+ hand_thumbsup = "hand_thumbsup",
904
+ hand_thumbsup_fill = "hand_thumbsup_fill",
905
+ hare = "hare",
906
+ hare_fill = "hare_fill",
907
+ headphones = "headphones",
908
+ heart = "heart",
909
+ heart_circle = "heart_circle",
910
+ heart_circle_fill = "heart_circle_fill",
911
+ heart_fill = "heart_fill",
912
+ heart_slash = "heart_slash",
913
+ heart_slash_circle = "heart_slash_circle",
914
+ heart_slash_circle_fill = "heart_slash_circle_fill",
915
+ heart_slash_fill = "heart_slash_fill",
916
+ heart_solid = "heart_solid",
917
+ helm = "helm",
918
+ hexagon = "hexagon",
919
+ hexagon_fill = "hexagon_fill",
920
+ hifispeaker = "hifispeaker",
921
+ hifispeaker_fill = "hifispeaker_fill",
922
+ home = "home",
923
+ hourglass = "hourglass",
924
+ hourglass_bottomhalf_fill = "hourglass_bottomhalf_fill",
925
+ hourglass_tophalf_fill = "hourglass_tophalf_fill",
926
+ house = "house",
927
+ house_alt = "house_alt",
928
+ house_alt_fill = "house_alt_fill",
929
+ house_fill = "house_fill",
930
+ hurricane = "hurricane",
931
+ increase_indent = "increase_indent",
932
+ increase_quotelevel = "increase_quotelevel",
933
+ infinite = "infinite",
934
+ info = "info",
935
+ info_circle = "info_circle",
936
+ info_circle_fill = "info_circle_fill",
937
+ italic = "italic",
938
+ keyboard = "keyboard",
939
+ keyboard_chevron_compact_down = "keyboard_chevron_compact_down",
940
+ lab_flask = "lab_flask",
941
+ lab_flask_solid = "lab_flask_solid",
942
+ largecircle_fill_circle = "largecircle_fill_circle",
943
+ lasso = "lasso",
944
+ layers = "layers",
945
+ layers_alt = "layers_alt",
946
+ layers_alt_fill = "layers_alt_fill",
947
+ layers_fill = "layers_fill",
948
+ leaf_arrow_circlepath = "leaf_arrow_circlepath",
949
+ left_chevron = "left_chevron",
950
+ lessthan = "lessthan",
951
+ lessthan_circle = "lessthan_circle",
952
+ lessthan_circle_fill = "lessthan_circle_fill",
953
+ lessthan_square = "lessthan_square",
954
+ lessthan_square_fill = "lessthan_square_fill",
955
+ light_max = "light_max",
956
+ light_min = "light_min",
957
+ lightbulb = "lightbulb",
958
+ lightbulb_fill = "lightbulb_fill",
959
+ lightbulb_slash = "lightbulb_slash",
960
+ lightbulb_slash_fill = "lightbulb_slash_fill",
961
+ line_horizontal_3 = "line_horizontal_3",
962
+ line_horizontal_3_decrease = "line_horizontal_3_decrease",
963
+ line_horizontal_3_decrease_circle = "line_horizontal_3_decrease_circle",
964
+ line_horizontal_3_decrease_circle_fill = "line_horizontal_3_decrease_circle_fill",
965
+ link = "link",
966
+ link_circle = "link_circle",
967
+ link_circle_fill = "link_circle_fill",
968
+ list_bullet = "list_bullet",
969
+ list_bullet_below_rectangle = "list_bullet_below_rectangle",
970
+ list_bullet_indent = "list_bullet_indent",
971
+ list_dash = "list_dash",
972
+ list_number = "list_number",
973
+ list_number_rtl = "list_number_rtl",
974
+ location = "location",
975
+ location_circle = "location_circle",
976
+ location_circle_fill = "location_circle_fill",
977
+ location_fill = "location_fill",
978
+ location_north = "location_north",
979
+ location_north_fill = "location_north_fill",
980
+ location_north_line = "location_north_line",
981
+ location_north_line_fill = "location_north_line_fill",
982
+ location_slash = "location_slash",
983
+ location_slash_fill = "location_slash_fill",
984
+ location_solid = "location_solid",
985
+ lock = "lock",
986
+ lock_circle = "lock_circle",
987
+ lock_circle_fill = "lock_circle_fill",
988
+ lock_fill = "lock_fill",
989
+ lock_open = "lock_open",
990
+ lock_open_fill = "lock_open_fill",
991
+ lock_rotation = "lock_rotation",
992
+ lock_rotation_open = "lock_rotation_open",
993
+ lock_shield = "lock_shield",
994
+ lock_shield_fill = "lock_shield_fill",
995
+ lock_slash = "lock_slash",
996
+ lock_slash_fill = "lock_slash_fill",
997
+ loop = "loop",
998
+ loop_thick = "loop_thick",
999
+ macwindow = "macwindow",
1000
+ mail = "mail",
1001
+ mail_solid = "mail_solid",
1002
+ map = "map",
1003
+ map_fill = "map_fill",
1004
+ map_pin = "map_pin",
1005
+ map_pin_ellipse = "map_pin_ellipse",
1006
+ map_pin_slash = "map_pin_slash",
1007
+ memories = "memories",
1008
+ memories_badge_minus = "memories_badge_minus",
1009
+ memories_badge_plus = "memories_badge_plus",
1010
+ metronome = "metronome",
1011
+ mic = "mic",
1012
+ mic_circle = "mic_circle",
1013
+ mic_circle_fill = "mic_circle_fill",
1014
+ mic_fill = "mic_fill",
1015
+ mic_off = "mic_off",
1016
+ mic_slash = "mic_slash",
1017
+ mic_slash_fill = "mic_slash_fill",
1018
+ mic_solid = "mic_solid",
1019
+ minus = "minus",
1020
+ minus_circle = "minus_circle",
1021
+ minus_circle_fill = "minus_circle_fill",
1022
+ minus_circled = "minus_circled",
1023
+ minus_rectangle = "minus_rectangle",
1024
+ minus_rectangle_fill = "minus_rectangle_fill",
1025
+ minus_slash_plus = "minus_slash_plus",
1026
+ minus_square = "minus_square",
1027
+ minus_square_fill = "minus_square_fill",
1028
+ money_dollar = "money_dollar",
1029
+ money_dollar_circle = "money_dollar_circle",
1030
+ money_dollar_circle_fill = "money_dollar_circle_fill",
1031
+ money_euro = "money_euro",
1032
+ money_euro_circle = "money_euro_circle",
1033
+ money_euro_circle_fill = "money_euro_circle_fill",
1034
+ money_pound = "money_pound",
1035
+ money_pound_circle = "money_pound_circle",
1036
+ money_pound_circle_fill = "money_pound_circle_fill",
1037
+ money_rubl = "money_rubl",
1038
+ money_rubl_circle = "money_rubl_circle",
1039
+ money_rubl_circle_fill = "money_rubl_circle_fill",
1040
+ money_yen = "money_yen",
1041
+ money_yen_circle = "money_yen_circle",
1042
+ money_yen_circle_fill = "money_yen_circle_fill",
1043
+ moon = "moon",
1044
+ moon_circle = "moon_circle",
1045
+ moon_circle_fill = "moon_circle_fill",
1046
+ moon_fill = "moon_fill",
1047
+ moon_stars = "moon_stars",
1048
+ moon_stars_fill = "moon_stars_fill",
1049
+ moon_zzz = "moon_zzz",
1050
+ moon_zzz_fill = "moon_zzz_fill",
1051
+ move = "move",
1052
+ multiply = "multiply",
1053
+ multiply_circle = "multiply_circle",
1054
+ multiply_circle_fill = "multiply_circle_fill",
1055
+ multiply_square = "multiply_square",
1056
+ multiply_square_fill = "multiply_square_fill",
1057
+ music_albums = "music_albums",
1058
+ music_albums_fill = "music_albums_fill",
1059
+ music_house = "music_house",
1060
+ music_house_fill = "music_house_fill",
1061
+ music_mic = "music_mic",
1062
+ music_note = "music_note",
1063
+ music_note_2 = "music_note_2",
1064
+ music_note_list = "music_note_list",
1065
+ news = "news",
1066
+ news_solid = "news_solid",
1067
+ nosign = "nosign",
1068
+ number = "number",
1069
+ number_circle = "number_circle",
1070
+ number_circle_fill = "number_circle_fill",
1071
+ number_square = "number_square",
1072
+ number_square_fill = "number_square_fill",
1073
+ option = "option",
1074
+ padlock = "padlock",
1075
+ padlock_solid = "padlock_solid",
1076
+ paintbrush = "paintbrush",
1077
+ paintbrush_fill = "paintbrush_fill",
1078
+ pano = "pano",
1079
+ pano_fill = "pano_fill",
1080
+ paperclip = "paperclip",
1081
+ paperplane = "paperplane",
1082
+ paperplane_fill = "paperplane_fill",
1083
+ paragraph = "paragraph",
1084
+ pause = "pause",
1085
+ pause_circle = "pause_circle",
1086
+ pause_circle_fill = "pause_circle_fill",
1087
+ pause_fill = "pause_fill",
1088
+ pause_rectangle = "pause_rectangle",
1089
+ pause_rectangle_fill = "pause_rectangle_fill",
1090
+ pause_solid = "pause_solid",
1091
+ paw = "paw",
1092
+ paw_solid = "paw_solid",
1093
+ pen = "pen",
1094
+ pencil = "pencil",
1095
+ pencil_circle = "pencil_circle",
1096
+ pencil_circle_fill = "pencil_circle_fill",
1097
+ pencil_ellipsis_rectangle = "pencil_ellipsis_rectangle",
1098
+ pencil_outline = "pencil_outline",
1099
+ pencil_slash = "pencil_slash",
1100
+ percent = "percent",
1101
+ person = "person",
1102
+ person_2 = "person_2",
1103
+ person_2_alt = "person_2_alt",
1104
+ person_2_fill = "person_2_fill",
1105
+ person_2_square_stack = "person_2_square_stack",
1106
+ person_2_square_stack_fill = "person_2_square_stack_fill",
1107
+ person_3 = "person_3",
1108
+ person_3_fill = "person_3_fill",
1109
+ person_add = "person_add",
1110
+ person_add_solid = "person_add_solid",
1111
+ person_alt = "person_alt",
1112
+ person_alt_circle = "person_alt_circle",
1113
+ person_alt_circle_fill = "person_alt_circle_fill",
1114
+ person_badge_minus = "person_badge_minus",
1115
+ person_badge_minus_fill = "person_badge_minus_fill",
1116
+ person_badge_plus = "person_badge_plus",
1117
+ person_badge_plus_fill = "person_badge_plus_fill",
1118
+ person_circle = "person_circle",
1119
+ person_circle_fill = "person_circle_fill",
1120
+ person_crop_circle = "person_crop_circle",
1121
+ person_crop_circle_badge_checkmark = "person_crop_circle_badge_checkmark",
1122
+ person_crop_circle_badge_exclam = "person_crop_circle_badge_exclam",
1123
+ person_crop_circle_badge_minus = "person_crop_circle_badge_minus",
1124
+ person_crop_circle_badge_plus = "person_crop_circle_badge_plus",
1125
+ person_crop_circle_badge_xmark = "person_crop_circle_badge_xmark",
1126
+ person_crop_circle_fill = "person_crop_circle_fill",
1127
+ person_crop_circle_fill_badge_checkmark = "person_crop_circle_fill_badge_checkmark",
1128
+ person_crop_circle_fill_badge_exclam = "person_crop_circle_fill_badge_exclam",
1129
+ person_crop_circle_fill_badge_minus = "person_crop_circle_fill_badge_minus",
1130
+ person_crop_circle_fill_badge_plus = "person_crop_circle_fill_badge_plus",
1131
+ person_crop_circle_fill_badge_xmark = "person_crop_circle_fill_badge_xmark",
1132
+ person_crop_rectangle = "person_crop_rectangle",
1133
+ person_crop_rectangle_fill = "person_crop_rectangle_fill",
1134
+ person_crop_square = "person_crop_square",
1135
+ person_crop_square_fill = "person_crop_square_fill",
1136
+ person_fill = "person_fill",
1137
+ person_solid = "person_solid",
1138
+ personalhotspot = "personalhotspot",
1139
+ perspective = "perspective",
1140
+ phone = "phone",
1141
+ phone_arrow_down_left = "phone_arrow_down_left",
1142
+ phone_arrow_right = "phone_arrow_right",
1143
+ phone_arrow_up_right = "phone_arrow_up_right",
1144
+ phone_badge_plus = "phone_badge_plus",
1145
+ phone_circle = "phone_circle",
1146
+ phone_circle_fill = "phone_circle_fill",
1147
+ phone_down = "phone_down",
1148
+ phone_down_circle = "phone_down_circle",
1149
+ phone_down_circle_fill = "phone_down_circle_fill",
1150
+ phone_down_fill = "phone_down_fill",
1151
+ phone_fill = "phone_fill",
1152
+ phone_fill_arrow_down_left = "phone_fill_arrow_down_left",
1153
+ phone_fill_arrow_right = "phone_fill_arrow_right",
1154
+ phone_fill_arrow_up_right = "phone_fill_arrow_up_right",
1155
+ phone_fill_badge_plus = "phone_fill_badge_plus",
1156
+ phone_solid = "phone_solid",
1157
+ photo = "photo",
1158
+ photo_camera = "photo_camera",
1159
+ photo_camera_solid = "photo_camera_solid",
1160
+ photo_fill = "photo_fill",
1161
+ photo_fill_on_rectangle_fill = "photo_fill_on_rectangle_fill",
1162
+ photo_on_rectangle = "photo_on_rectangle",
1163
+ piano = "piano",
1164
+ pin = "pin",
1165
+ pin_fill = "pin_fill",
1166
+ pin_slash = "pin_slash",
1167
+ pin_slash_fill = "pin_slash_fill",
1168
+ placemark = "placemark",
1169
+ placemark_fill = "placemark_fill",
1170
+ play = "play",
1171
+ play_arrow = "play_arrow",
1172
+ play_arrow_solid = "play_arrow_solid",
1173
+ play_circle = "play_circle",
1174
+ play_circle_fill = "play_circle_fill",
1175
+ play_fill = "play_fill",
1176
+ play_rectangle = "play_rectangle",
1177
+ play_rectangle_fill = "play_rectangle_fill",
1178
+ playpause = "playpause",
1179
+ playpause_fill = "playpause_fill",
1180
+ plus = "plus",
1181
+ plus_app = "plus_app",
1182
+ plus_app_fill = "plus_app_fill",
1183
+ plus_bubble = "plus_bubble",
1184
+ plus_bubble_fill = "plus_bubble_fill",
1185
+ plus_circle = "plus_circle",
1186
+ plus_circle_fill = "plus_circle_fill",
1187
+ plus_circled = "plus_circled",
1188
+ plus_rectangle = "plus_rectangle",
1189
+ plus_rectangle_fill = "plus_rectangle_fill",
1190
+ plus_rectangle_fill_on_rectangle_fill = "plus_rectangle_fill_on_rectangle_fill",
1191
+ plus_rectangle_on_rectangle = "plus_rectangle_on_rectangle",
1192
+ plus_slash_minus = "plus_slash_minus",
1193
+ plus_square = "plus_square",
1194
+ plus_square_fill = "plus_square_fill",
1195
+ plus_square_fill_on_square_fill = "plus_square_fill_on_square_fill",
1196
+ plus_square_on_square = "plus_square_on_square",
1197
+ plusminus = "plusminus",
1198
+ plusminus_circle = "plusminus_circle",
1199
+ plusminus_circle_fill = "plusminus_circle_fill",
1200
+ power = "power",
1201
+ printer = "printer",
1202
+ printer_fill = "printer_fill",
1203
+ profile_circled = "profile_circled",
1204
+ projective = "projective",
1205
+ purchased = "purchased",
1206
+ purchased_circle = "purchased_circle",
1207
+ purchased_circle_fill = "purchased_circle_fill",
1208
+ qrcode = "qrcode",
1209
+ qrcode_viewfinder = "qrcode_viewfinder",
1210
+ question = "question",
1211
+ question_circle = "question_circle",
1212
+ question_circle_fill = "question_circle_fill",
1213
+ question_diamond = "question_diamond",
1214
+ question_diamond_fill = "question_diamond_fill",
1215
+ question_square = "question_square",
1216
+ question_square_fill = "question_square_fill",
1217
+ quote_bubble = "quote_bubble",
1218
+ quote_bubble_fill = "quote_bubble_fill",
1219
+ radiowaves_left = "radiowaves_left",
1220
+ radiowaves_right = "radiowaves_right",
1221
+ rays = "rays",
1222
+ recordingtape = "recordingtape",
1223
+ rectangle = "rectangle",
1224
+ rectangle_3_offgrid = "rectangle_3_offgrid",
1225
+ rectangle_3_offgrid_fill = "rectangle_3_offgrid_fill",
1226
+ rectangle_arrow_up_right_arrow_down_left = "rectangle_arrow_up_right_arrow_down_left",
1227
+ rectangle_arrow_up_right_arrow_down_left_slash = "rectangle_arrow_up_right_arrow_down_left_slash",
1228
+ rectangle_badge_checkmark = "rectangle_badge_checkmark",
1229
+ rectangle_badge_xmark = "rectangle_badge_xmark",
1230
+ rectangle_compress_vertical = "rectangle_compress_vertical",
1231
+ rectangle_dock = "rectangle_dock",
1232
+ rectangle_expand_vertical = "rectangle_expand_vertical",
1233
+ rectangle_fill = "rectangle_fill",
1234
+ rectangle_fill_badge_checkmark = "rectangle_fill_badge_checkmark",
1235
+ rectangle_fill_badge_xmark = "rectangle_fill_badge_xmark",
1236
+ rectangle_fill_on_rectangle_angled_fill = "rectangle_fill_on_rectangle_angled_fill",
1237
+ rectangle_fill_on_rectangle_fill = "rectangle_fill_on_rectangle_fill",
1238
+ rectangle_grid_1x2 = "rectangle_grid_1x2",
1239
+ rectangle_grid_1x2_fill = "rectangle_grid_1x2_fill",
1240
+ rectangle_grid_2x2 = "rectangle_grid_2x2",
1241
+ rectangle_grid_2x2_fill = "rectangle_grid_2x2_fill",
1242
+ rectangle_grid_3x2 = "rectangle_grid_3x2",
1243
+ rectangle_grid_3x2_fill = "rectangle_grid_3x2_fill",
1244
+ rectangle_on_rectangle = "rectangle_on_rectangle",
1245
+ rectangle_on_rectangle_angled = "rectangle_on_rectangle_angled",
1246
+ rectangle_paperclip = "rectangle_paperclip",
1247
+ rectangle_split_3x1 = "rectangle_split_3x1",
1248
+ rectangle_split_3x1_fill = "rectangle_split_3x1_fill",
1249
+ rectangle_split_3x3 = "rectangle_split_3x3",
1250
+ rectangle_split_3x3_fill = "rectangle_split_3x3_fill",
1251
+ rectangle_stack = "rectangle_stack",
1252
+ rectangle_stack_badge_minus = "rectangle_stack_badge_minus",
1253
+ rectangle_stack_badge_person_crop = "rectangle_stack_badge_person_crop",
1254
+ rectangle_stack_badge_plus = "rectangle_stack_badge_plus",
1255
+ rectangle_stack_fill = "rectangle_stack_fill",
1256
+ rectangle_stack_fill_badge_minus = "rectangle_stack_fill_badge_minus",
1257
+ rectangle_stack_fill_badge_person_crop = "rectangle_stack_fill_badge_person_crop",
1258
+ rectangle_stack_fill_badge_plus = "rectangle_stack_fill_badge_plus",
1259
+ rectangle_stack_person_crop = "rectangle_stack_person_crop",
1260
+ rectangle_stack_person_crop_fill = "rectangle_stack_person_crop_fill",
1261
+ refresh = "refresh",
1262
+ refresh_bold = "refresh_bold",
1263
+ refresh_circled = "refresh_circled",
1264
+ refresh_circled_solid = "refresh_circled_solid",
1265
+ refresh_thick = "refresh_thick",
1266
+ refresh_thin = "refresh_thin",
1267
+ repeat = "repeat",
1268
+ repeat_1 = "repeat_1",
1269
+ reply = "reply",
1270
+ reply_all = "reply_all",
1271
+ reply_thick_solid = "reply_thick_solid",
1272
+ resize = "resize",
1273
+ resize_h = "resize_h",
1274
+ resize_v = "resize_v",
1275
+ restart = "restart",
1276
+ return_icon = "return_icon",
1277
+ rhombus = "rhombus",
1278
+ rhombus_fill = "rhombus_fill",
1279
+ right_chevron = "right_chevron",
1280
+ rocket = "rocket",
1281
+ rocket_fill = "rocket_fill",
1282
+ rosette = "rosette",
1283
+ rotate_left = "rotate_left",
1284
+ rotate_left_fill = "rotate_left_fill",
1285
+ rotate_right = "rotate_right",
1286
+ rotate_right_fill = "rotate_right_fill",
1287
+ scissors = "scissors",
1288
+ scissors_alt = "scissors_alt",
1289
+ scope = "scope",
1290
+ scribble = "scribble",
1291
+ search = "search",
1292
+ search_circle = "search_circle",
1293
+ search_circle_fill = "search_circle_fill",
1294
+ selection_pin_in_out = "selection_pin_in_out",
1295
+ settings = "settings",
1296
+ settings_solid = "settings_solid",
1297
+ share = "share",
1298
+ share_solid = "share_solid",
1299
+ share_up = "share_up",
1300
+ shield = "shield",
1301
+ shield_fill = "shield_fill",
1302
+ shield_lefthalf_fill = "shield_lefthalf_fill",
1303
+ shield_slash = "shield_slash",
1304
+ shield_slash_fill = "shield_slash_fill",
1305
+ shift = "shift",
1306
+ shift_fill = "shift_fill",
1307
+ shopping_cart = "shopping_cart",
1308
+ shuffle = "shuffle",
1309
+ shuffle_medium = "shuffle_medium",
1310
+ shuffle_thick = "shuffle_thick",
1311
+ sidebar_left = "sidebar_left",
1312
+ sidebar_right = "sidebar_right",
1313
+ signature = "signature",
1314
+ skew = "skew",
1315
+ slash_circle = "slash_circle",
1316
+ slash_circle_fill = "slash_circle_fill",
1317
+ slider_horizontal_3 = "slider_horizontal_3",
1318
+ slider_horizontal_below_rectangle = "slider_horizontal_below_rectangle",
1319
+ slowmo = "slowmo",
1320
+ smallcircle_circle = "smallcircle_circle",
1321
+ smallcircle_circle_fill = "smallcircle_circle_fill",
1322
+ smallcircle_fill_circle = "smallcircle_fill_circle",
1323
+ smallcircle_fill_circle_fill = "smallcircle_fill_circle_fill",
1324
+ smiley = "smiley",
1325
+ smiley_fill = "smiley_fill",
1326
+ smoke = "smoke",
1327
+ smoke_fill = "smoke_fill",
1328
+ snow = "snow",
1329
+ sort_down = "sort_down",
1330
+ sort_down_circle = "sort_down_circle",
1331
+ sort_down_circle_fill = "sort_down_circle_fill",
1332
+ sort_up = "sort_up",
1333
+ sort_up_circle = "sort_up_circle",
1334
+ sort_up_circle_fill = "sort_up_circle_fill",
1335
+ sparkles = "sparkles",
1336
+ speaker = "speaker",
1337
+ speaker_1 = "speaker_1",
1338
+ speaker_1_fill = "speaker_1_fill",
1339
+ speaker_2 = "speaker_2",
1340
+ speaker_2_fill = "speaker_2_fill",
1341
+ speaker_3 = "speaker_3",
1342
+ speaker_3_fill = "speaker_3_fill",
1343
+ speaker_fill = "speaker_fill",
1344
+ speaker_slash = "speaker_slash",
1345
+ speaker_slash_fill = "speaker_slash_fill",
1346
+ speaker_slash_fill_rtl = "speaker_slash_fill_rtl",
1347
+ speaker_slash_rtl = "speaker_slash_rtl",
1348
+ speaker_zzz = "speaker_zzz",
1349
+ speaker_zzz_fill = "speaker_zzz_fill",
1350
+ speaker_zzz_fill_rtl = "speaker_zzz_fill_rtl",
1351
+ speaker_zzz_rtl = "speaker_zzz_rtl",
1352
+ speedometer = "speedometer",
1353
+ sportscourt = "sportscourt",
1354
+ sportscourt_fill = "sportscourt_fill",
1355
+ square = "square",
1356
+ square_arrow_down = "square_arrow_down",
1357
+ square_arrow_down_fill = "square_arrow_down_fill",
1358
+ square_arrow_down_on_square = "square_arrow_down_on_square",
1359
+ square_arrow_down_on_square_fill = "square_arrow_down_on_square_fill",
1360
+ square_arrow_left = "square_arrow_left",
1361
+ square_arrow_left_fill = "square_arrow_left_fill",
1362
+ square_arrow_right = "square_arrow_right",
1363
+ square_arrow_right_fill = "square_arrow_right_fill",
1364
+ square_arrow_up = "square_arrow_up",
1365
+ square_arrow_up_fill = "square_arrow_up_fill",
1366
+ square_arrow_up_on_square = "square_arrow_up_on_square",
1367
+ square_arrow_up_on_square_fill = "square_arrow_up_on_square_fill",
1368
+ square_favorites = "square_favorites",
1369
+ square_favorites_alt = "square_favorites_alt",
1370
+ square_favorites_alt_fill = "square_favorites_alt_fill",
1371
+ square_favorites_fill = "square_favorites_fill",
1372
+ square_fill = "square_fill",
1373
+ square_fill_line_vertical_square = "square_fill_line_vertical_square",
1374
+ square_fill_line_vertical_square_fill = "square_fill_line_vertical_square_fill",
1375
+ square_fill_on_circle_fill = "square_fill_on_circle_fill",
1376
+ square_fill_on_square_fill = "square_fill_on_square_fill",
1377
+ square_grid_2x2 = "square_grid_2x2",
1378
+ square_grid_2x2_fill = "square_grid_2x2_fill",
1379
+ square_grid_3x2 = "square_grid_3x2",
1380
+ square_grid_3x2_fill = "square_grid_3x2_fill",
1381
+ square_grid_4x3_fill = "square_grid_4x3_fill",
1382
+ square_lefthalf_fill = "square_lefthalf_fill",
1383
+ square_line_vertical_square = "square_line_vertical_square",
1384
+ square_line_vertical_square_fill = "square_line_vertical_square_fill",
1385
+ square_list = "square_list",
1386
+ square_list_fill = "square_list_fill",
1387
+ square_on_circle = "square_on_circle",
1388
+ square_on_square = "square_on_square",
1389
+ square_pencil = "square_pencil",
1390
+ square_pencil_fill = "square_pencil_fill",
1391
+ square_righthalf_fill = "square_righthalf_fill",
1392
+ square_split_1x2 = "square_split_1x2",
1393
+ square_split_1x2_fill = "square_split_1x2_fill",
1394
+ square_split_2x1 = "square_split_2x1",
1395
+ square_split_2x1_fill = "square_split_2x1_fill",
1396
+ square_split_2x2 = "square_split_2x2",
1397
+ square_split_2x2_fill = "square_split_2x2_fill",
1398
+ square_stack = "square_stack",
1399
+ square_stack_3d_down_dottedline = "square_stack_3d_down_dottedline",
1400
+ square_stack_3d_down_right = "square_stack_3d_down_right",
1401
+ square_stack_3d_down_right_fill = "square_stack_3d_down_right_fill",
1402
+ square_stack_3d_up = "square_stack_3d_up",
1403
+ square_stack_3d_up_fill = "square_stack_3d_up_fill",
1404
+ square_stack_3d_up_slash = "square_stack_3d_up_slash",
1405
+ square_stack_3d_up_slash_fill = "square_stack_3d_up_slash_fill",
1406
+ square_stack_fill = "square_stack_fill",
1407
+ squares_below_rectangle = "squares_below_rectangle",
1408
+ star = "star",
1409
+ star_circle = "star_circle",
1410
+ star_circle_fill = "star_circle_fill",
1411
+ star_fill = "star_fill",
1412
+ star_lefthalf_fill = "star_lefthalf_fill",
1413
+ star_slash = "star_slash",
1414
+ star_slash_fill = "star_slash_fill",
1415
+ staroflife = "staroflife",
1416
+ staroflife_fill = "staroflife_fill",
1417
+ stop = "stop",
1418
+ stop_circle = "stop_circle",
1419
+ stop_circle_fill = "stop_circle_fill",
1420
+ stop_fill = "stop_fill",
1421
+ stopwatch = "stopwatch",
1422
+ stopwatch_fill = "stopwatch_fill",
1423
+ strikethrough = "strikethrough",
1424
+ suit_club = "suit_club",
1425
+ suit_club_fill = "suit_club_fill",
1426
+ suit_diamond = "suit_diamond",
1427
+ suit_diamond_fill = "suit_diamond_fill",
1428
+ suit_heart = "suit_heart",
1429
+ suit_heart_fill = "suit_heart_fill",
1430
+ suit_spade = "suit_spade",
1431
+ suit_spade_fill = "suit_spade_fill",
1432
+ sum = "sum",
1433
+ sun_dust = "sun_dust",
1434
+ sun_dust_fill = "sun_dust_fill",
1435
+ sun_haze = "sun_haze",
1436
+ sun_haze_fill = "sun_haze_fill",
1437
+ sun_max = "sun_max",
1438
+ sun_max_fill = "sun_max_fill",
1439
+ sun_min = "sun_min",
1440
+ sun_min_fill = "sun_min_fill",
1441
+ sunrise = "sunrise",
1442
+ sunrise_fill = "sunrise_fill",
1443
+ sunset = "sunset",
1444
+ sunset_fill = "sunset_fill",
1445
+ switch_camera = "switch_camera",
1446
+ switch_camera_solid = "switch_camera_solid",
1447
+ t_bubble = "t_bubble",
1448
+ t_bubble_fill = "t_bubble_fill",
1449
+ table = "table",
1450
+ table_badge_more = "table_badge_more",
1451
+ table_badge_more_fill = "table_badge_more_fill",
1452
+ table_fill = "table_fill",
1453
+ tag = "tag",
1454
+ tag_circle = "tag_circle",
1455
+ tag_circle_fill = "tag_circle_fill",
1456
+ tag_fill = "tag_fill",
1457
+ tag_solid = "tag_solid",
1458
+ tags = "tags",
1459
+ tags_solid = "tags_solid",
1460
+ text_aligncenter = "text_aligncenter",
1461
+ text_alignleft = "text_alignleft",
1462
+ text_alignright = "text_alignright",
1463
+ text_append = "text_append",
1464
+ text_badge_checkmark = "text_badge_checkmark",
1465
+ text_badge_minus = "text_badge_minus",
1466
+ text_badge_plus = "text_badge_plus",
1467
+ text_badge_star = "text_badge_star",
1468
+ text_badge_xmark = "text_badge_xmark",
1469
+ text_bubble = "text_bubble",
1470
+ text_bubble_fill = "text_bubble_fill",
1471
+ text_cursor = "text_cursor",
1472
+ text_insert = "text_insert",
1473
+ text_justify = "text_justify",
1474
+ text_justifyleft = "text_justifyleft",
1475
+ text_justifyright = "text_justifyright",
1476
+ text_quote = "text_quote",
1477
+ textbox = "textbox",
1478
+ textformat = "textformat",
1479
+ textformat_123 = "textformat_123",
1480
+ textformat_abc = "textformat_abc",
1481
+ textformat_abc_dottedunderline = "textformat_abc_dottedunderline",
1482
+ textformat_alt = "textformat_alt",
1483
+ textformat_size = "textformat_size",
1484
+ textformat_subscript = "textformat_subscript",
1485
+ textformat_superscript = "textformat_superscript",
1486
+ thermometer = "thermometer",
1487
+ thermometer_snowflake = "thermometer_snowflake",
1488
+ thermometer_sun = "thermometer_sun",
1489
+ ticket = "ticket",
1490
+ ticket_fill = "ticket_fill",
1491
+ tickets = "tickets",
1492
+ tickets_fill = "tickets_fill",
1493
+ time = "time",
1494
+ time_solid = "time_solid",
1495
+ timelapse = "timelapse",
1496
+ timer = "timer",
1497
+ timer_fill = "timer_fill",
1498
+ today = "today",
1499
+ today_fill = "today_fill",
1500
+ tornado = "tornado",
1501
+ tortoise = "tortoise",
1502
+ tortoise_fill = "tortoise_fill",
1503
+ train_style_one = "train_style_one",
1504
+ train_style_two = "train_style_two",
1505
+ tram_fill = "tram_fill",
1506
+ trash = "trash",
1507
+ trash_circle = "trash_circle",
1508
+ trash_circle_fill = "trash_circle_fill",
1509
+ trash_fill = "trash_fill",
1510
+ trash_slash = "trash_slash",
1511
+ trash_slash_fill = "trash_slash_fill",
1512
+ tray = "tray",
1513
+ tray_2 = "tray_2",
1514
+ tray_2_fill = "tray_2_fill",
1515
+ tray_arrow_down = "tray_arrow_down",
1516
+ tray_arrow_down_fill = "tray_arrow_down_fill",
1517
+ tray_arrow_up = "tray_arrow_up",
1518
+ tray_arrow_up_fill = "tray_arrow_up_fill",
1519
+ tray_fill = "tray_fill",
1520
+ tray_full = "tray_full",
1521
+ tray_full_fill = "tray_full_fill",
1522
+ tree = "tree",
1523
+ triangle = "triangle",
1524
+ triangle_fill = "triangle_fill",
1525
+ triangle_lefthalf_fill = "triangle_lefthalf_fill",
1526
+ triangle_righthalf_fill = "triangle_righthalf_fill",
1527
+ tropicalstorm = "tropicalstorm",
1528
+ tuningfork = "tuningfork",
1529
+ tv = "tv",
1530
+ tv_circle = "tv_circle",
1531
+ tv_circle_fill = "tv_circle_fill",
1532
+ tv_fill = "tv_fill",
1533
+ tv_music_note = "tv_music_note",
1534
+ tv_music_note_fill = "tv_music_note_fill",
1535
+ uiwindow_split_2x1 = "uiwindow_split_2x1",
1536
+ umbrella = "umbrella",
1537
+ umbrella_fill = "umbrella_fill",
1538
+ underline = "underline",
1539
+ up_arrow = "up_arrow",
1540
+ upload_circle = "upload_circle",
1541
+ upload_circle_fill = "upload_circle_fill",
1542
+ video_camera = "video_camera",
1543
+ video_camera_solid = "video_camera_solid",
1544
+ videocam = "videocam",
1545
+ videocam_circle = "videocam_circle",
1546
+ videocam_circle_fill = "videocam_circle_fill",
1547
+ videocam_fill = "videocam_fill",
1548
+ view_2d = "view_2d",
1549
+ view_3d = "view_3d",
1550
+ viewfinder = "viewfinder",
1551
+ viewfinder_circle = "viewfinder_circle",
1552
+ viewfinder_circle_fill = "viewfinder_circle_fill",
1553
+ volume_down = "volume_down",
1554
+ volume_mute = "volume_mute",
1555
+ volume_off = "volume_off",
1556
+ volume_up = "volume_up",
1557
+ wand_rays = "wand_rays",
1558
+ wand_rays_inverse = "wand_rays_inverse",
1559
+ wand_stars = "wand_stars",
1560
+ wand_stars_inverse = "wand_stars_inverse",
1561
+ waveform = "waveform",
1562
+ waveform_circle = "waveform_circle",
1563
+ waveform_circle_fill = "waveform_circle_fill",
1564
+ waveform_path = "waveform_path",
1565
+ waveform_path_badge_minus = "waveform_path_badge_minus",
1566
+ waveform_path_badge_plus = "waveform_path_badge_plus",
1567
+ waveform_path_ecg = "waveform_path_ecg",
1568
+ wifi = "wifi",
1569
+ wifi_exclamationmark = "wifi_exclamationmark",
1570
+ wifi_slash = "wifi_slash",
1571
+ wind = "wind",
1572
+ wind_snow = "wind_snow",
1573
+ wrench = "wrench",
1574
+ wrench_fill = "wrench_fill",
1575
+ xmark = "xmark",
1576
+ xmark_circle = "xmark_circle",
1577
+ xmark_circle_fill = "xmark_circle_fill",
1578
+ xmark_octagon = "xmark_octagon",
1579
+ xmark_octagon_fill = "xmark_octagon_fill",
1580
+ xmark_rectangle = "xmark_rectangle",
1581
+ xmark_rectangle_fill = "xmark_rectangle_fill",
1582
+ xmark_seal = "xmark_seal",
1583
+ xmark_seal_fill = "xmark_seal_fill",
1584
+ xmark_shield = "xmark_shield",
1585
+ xmark_shield_fill = "xmark_shield_fill",
1586
+ xmark_square = "xmark_square",
1587
+ xmark_square_fill = "xmark_square_fill",
1588
+ zoom_in = "zoom_in",
1589
+ zoom_out = "zoom_out",
1590
+ zzz = "zzz"
1591
+ }
1592
+ declare enum CupertinoColors {
1593
+ activeBlue = "rgba(0, 122, 255, 1)",
1594
+ activeGreen = "rgba(52, 199, 89, 1)",
1595
+ activeOrange = "rgba(255, 149, 0, 1)",
1596
+ black = "rgba(0, 0, 0, 1)",
1597
+ darkBackgroundGray = "rgba(23, 23, 23, 1)",
1598
+ destructiveRed = "rgba(255, 59, 48, 1)",
1599
+ extraLightBackgroundGray = "rgba(239, 239, 244, 1)",
1600
+ inactiveGray = "rgba(153, 153, 153, 1)",
1601
+ label = "rgba(0, 0, 0, 1)",
1602
+ lightBackgroundGray = "rgba(229, 229, 234, 1)",
1603
+ link = "rgba(0, 122, 255, 1)",
1604
+ opaqueSeparator = "rgba(198, 198, 200, 1)",
1605
+ placeholderText = "rgba(60, 60, 67, 0.298)",
1606
+ quaternaryLabel = "rgba(60, 60, 67, 0.176)",
1607
+ quaternarySystemFill = "rgba(116, 116, 128, 0.078)",
1608
+ secondaryLabel = "rgba(60, 60, 67, 0.6)",
1609
+ secondarySystemBackground = "rgba(242, 242, 247, 1)",
1610
+ secondarySystemFill = "rgba(120, 120, 128, 0.157)",
1611
+ secondarySystemGroupedBackground = "rgba(255, 255, 255, 1)",
1612
+ separator = "rgba(60, 60, 67, 0.286)",
1613
+ systemBackground = "rgba(255, 255, 255, 1)",
1614
+ systemBlue = "rgba(0, 122, 255, 1)",
1615
+ systemBrown = "rgba(162, 132, 94, 1)",
1616
+ systemCyan = "rgba(50, 173, 230, 1)",
1617
+ systemFill = "rgba(120, 120, 128, 0.2)",
1618
+ systemGreen = "rgba(52, 199, 89, 1)",
1619
+ systemGrey = "rgba(142, 142, 147, 1)",
1620
+ systemGrey2 = "rgba(174, 174, 178, 1)",
1621
+ systemGrey3 = "rgba(199, 199, 204, 1)",
1622
+ systemGrey4 = "rgba(209, 209, 214, 1)",
1623
+ systemGrey5 = "rgba(229, 229, 234, 1)",
1624
+ systemGrey6 = "rgba(242, 242, 247, 1)",
1625
+ systemGroupedBackground = "rgba(242, 242, 247, 1)",
1626
+ systemIndigo = "rgba(88, 86, 214, 1)",
1627
+ systemMint = "rgba(0, 199, 190, 1)",
1628
+ systemOrange = "rgba(255, 149, 0, 1)",
1629
+ systemPink = "rgba(255, 45, 85, 1)",
1630
+ systemPurple = "rgba(175, 82, 222, 1)",
1631
+ systemRed = "rgba(255, 59, 48, 1)",
1632
+ systemTeal = "rgba(90, 200, 250, 1)",
1633
+ systemYellow = "rgba(255, 204, 0, 1)",
1634
+ tertiaryLabel = "rgba(60, 60, 67, 0.298)",
1635
+ tertiarySystemBackground = "rgba(255, 255, 255, 1)",
1636
+ tertiarySystemFill = "rgba(118, 118, 128, 0.118)",
1637
+ tertiarySystemGroupedBackground = "rgba(242, 242, 247, 1)",
1638
+ transparent = "rgba(0, 0, 0, 0)",
1639
+ white = "rgba(255, 255, 255, 1)"
1640
+ }
1641
+
1642
+ interface FlutterCupertinoIconProps {
1643
+ /**
1644
+ * type property
1645
+ * @default undefined
1646
+ */
1647
+ type?: CupertinoIcons;
1648
+ /**
1649
+ * label property
1650
+ * @default undefined
1651
+ */
1652
+ label?: string;
192
1653
  /**
193
1654
  * HTML id attribute
194
1655
  */
@@ -206,80 +1667,61 @@ interface FlutterCupertinoTextareaProps {
206
1667
  */
207
1668
  className?: string;
208
1669
  }
209
- /**
210
- * Element interface with methods accessible via ref
211
- * @example
212
- * ```tsx
213
- * const ref = useRef<FlutterCupertinoTextareaElement>(null);
214
- * // Call methods on the element
215
- * ref.current?.finishRefresh('success');
216
- * ```
217
- */
218
- interface FlutterCupertinoTextareaElement extends WebFElementWithMethods<{
219
- focus(): void;
220
- blur(): void;
221
- clear(): void;
222
- }> {
1670
+ interface FlutterCupertinoIconElement extends WebFElementWithMethods<{}> {
223
1671
  }
224
1672
  /**
225
- * FlutterCupertinoTextarea - WebF FlutterCupertinoTextarea component
1673
+ * FlutterCupertinoIcon - WebF FlutterCupertinoIcon component
226
1674
  *
227
1675
  * @example
228
1676
  * ```tsx
229
- * const ref = useRef<FlutterCupertinoTextareaElement>(null);
230
1677
  *
231
- * <FlutterCupertinoTextarea
232
- * ref={ref}
1678
+ * <FlutterCupertinoIcon
233
1679
  * // Add props here
234
1680
  * >
235
1681
  * Content
236
- * </FlutterCupertinoTextarea>
237
- *
238
- * // Call methods on the element
239
- * ref.current?.finishRefresh('success');
1682
+ * </FlutterCupertinoIcon>
240
1683
  * ```
241
1684
  */
242
- declare const FlutterCupertinoTextarea: React.ForwardRefExoticComponent<FlutterCupertinoTextareaProps & {
1685
+ declare const FlutterCupertinoIcon: React.ForwardRefExoticComponent<FlutterCupertinoIconProps & {
243
1686
  className?: string;
244
1687
  style?: React.CSSProperties;
245
1688
  children?: React.ReactNode;
246
- } & React.RefAttributes<FlutterCupertinoTextareaElement>>;
1689
+ } & React.RefAttributes<FlutterCupertinoIconElement>>;
247
1690
 
248
- interface FlutterCupertinoTabBarProps {
249
- /**
250
- * Zero-based active item index.
251
- * Default: 0. Values outside range are clamped.
252
- */
253
- currentIndex?: number;
1691
+ interface FlutterCupertinoButtonProps {
254
1692
  /**
255
- * Background color of the tab bar.
256
- * Hex string: '#RRGGBB' or '#AARRGGBB'.
1693
+ * Visual variant of the button.
1694
+ * - 'plain': Standard CupertinoButton
1695
+ * - 'filled': CupertinoButton.filled (ignores custom background color)
1696
+ * - 'tinted': CupertinoButton.tinted
1697
+ * Default: 'plain'
257
1698
  */
258
- backgroundColor?: string;
1699
+ variant?: string;
259
1700
  /**
260
- * Color of the active item.
261
- * Hex string: '#RRGGBB' or '#AARRGGBB'.
1701
+ * Size style used to derive default padding and min height.
1702
+ * - 'small': minSize ~32, compact padding
1703
+ * - 'large': minSize ~44, comfortable padding
1704
+ * Default: 'small'
262
1705
  */
263
- activeColor?: string;
1706
+ size?: string;
264
1707
  /**
265
- * Color of inactive items.
266
- * Hex string: '#RRGGBB' or '#AARRGGBB'.
1708
+ * Disable interactions. When true, onPressed is null and the button uses a disabled color.
267
1709
  */
268
- inactiveColor?: string;
1710
+ disabled?: boolean;
269
1711
  /**
270
- * Icon size in logical pixels.
271
- * Default: 30.
1712
+ * Opacity applied while pressed (0.0–1.0). Default: 0.4
1713
+ * Note: Accepts numeric value as a string.
272
1714
  */
273
- iconSize?: number;
1715
+ pressedOpacity?: string;
274
1716
  /**
275
- * Removes the top border.
276
- * Default: false.
1717
+ * Hex color used when disabled. Accepts '#RRGGBB' or '#AARRGGBB'.
1718
+ * Overrides the internally computed disabled color.
277
1719
  */
278
- noTopBorder?: boolean;
1720
+ disabledColor?: string;
279
1721
  /**
280
- * Fired when a different tab is selected. detail = selected index
1722
+ * Fired when the button is pressed (not emitted when disabled).
281
1723
  */
282
- onChange?: (event: CustomEvent<number>) => void;
1724
+ onClick?: (event: Event) => void;
283
1725
  /**
284
1726
  * HTML id attribute
285
1727
  */
@@ -297,33 +1739,86 @@ interface FlutterCupertinoTabBarProps {
297
1739
  */
298
1740
  className?: string;
299
1741
  }
300
- interface FlutterCupertinoTabBarElement extends WebFElementWithMethods<{}> {
1742
+ interface FlutterCupertinoButtonElement extends WebFElementWithMethods<{}> {
301
1743
  }
302
1744
  /**
303
- * Properties for <flutter-cupertino-tab-bar>
304
- Bottom navigation bar with iOS styling.
1745
+ * Properties for <flutter-cupertino-button>
305
1746
  *
306
1747
  * @example
307
1748
  * ```tsx
308
1749
  *
309
- * <FlutterCupertinoTabBar
1750
+ * <FlutterCupertinoButton
310
1751
  * // Add props here
311
1752
  * >
312
1753
  * Content
313
- * </FlutterCupertinoTabBar>
1754
+ * </FlutterCupertinoButton>
314
1755
  * ```
315
1756
  */
316
- declare const FlutterCupertinoTabBar: React.ForwardRefExoticComponent<FlutterCupertinoTabBarProps & {
1757
+ declare const FlutterCupertinoButton: React.ForwardRefExoticComponent<FlutterCupertinoButtonProps & {
317
1758
  className?: string;
318
1759
  style?: React.CSSProperties;
319
1760
  children?: React.ReactNode;
320
- } & React.RefAttributes<FlutterCupertinoTabBarElement>>;
1761
+ } & React.RefAttributes<FlutterCupertinoButtonElement>>;
321
1762
 
322
- interface FlutterCupertinoTabBarItemProps {
1763
+ interface FlutterCupertinoAlertOptions {
1764
+ title?: string;
1765
+ message?: string;
1766
+ }
1767
+ interface FlutterCupertinoAlertProps {
1768
+ /**
1769
+ * Dialog title text.
1770
+ */
1771
+ title?: string;
1772
+ /**
1773
+ * Dialog message/body text.
1774
+ */
1775
+ message?: string;
1776
+ /**
1777
+ * Cancel button label. If empty or omitted, no cancel button is shown.
1778
+ */
1779
+ cancelText?: string;
1780
+ /**
1781
+ * Whether the cancel button is destructive (red).
1782
+ * Default: false.
1783
+ */
1784
+ cancelDestructive?: boolean;
1785
+ /**
1786
+ * Whether the cancel button is the default action.
1787
+ * Default: false.
1788
+ */
1789
+ cancelDefault?: boolean;
1790
+ /**
1791
+ * JSON-encoded text style for the cancel button label.
1792
+ * Example: '{"color":"#FF0000","fontSize":16,"fontWeight":"bold"}'
1793
+ */
1794
+ cancelTextStyle?: string;
1795
+ /**
1796
+ * Confirm button label.
1797
+ * Default: localized 'OK'.
1798
+ */
1799
+ confirmText?: string;
1800
+ /**
1801
+ * Whether the confirm button is the default action.
1802
+ * Default: true.
1803
+ */
1804
+ confirmDefault?: boolean;
1805
+ /**
1806
+ * Whether the confirm button is destructive.
1807
+ * Default: false.
1808
+ */
1809
+ confirmDestructive?: boolean;
1810
+ /**
1811
+ * JSON-encoded text style for the confirm button label.
1812
+ */
1813
+ confirmTextStyle?: string;
1814
+ /**
1815
+ * Fired when the cancel button is pressed.
1816
+ */
1817
+ onCancel?: (event: CustomEvent<void>) => void;
323
1818
  /**
324
- * Label displayed under the icon for this item.
1819
+ * Fired when the confirm button is pressed.
325
1820
  */
326
- title?: string;
1821
+ onConfirm?: (event: CustomEvent<void>) => void;
327
1822
  /**
328
1823
  * HTML id attribute
329
1824
  */
@@ -341,37 +1836,58 @@ interface FlutterCupertinoTabBarItemProps {
341
1836
  */
342
1837
  className?: string;
343
1838
  }
344
- interface FlutterCupertinoTabBarItemElement extends WebFElementWithMethods<{}> {
1839
+ /**
1840
+ * Element interface with methods accessible via ref
1841
+ * @example
1842
+ * ```tsx
1843
+ * const ref = useRef<FlutterCupertinoAlertElement>(null);
1844
+ * // Call methods on the element
1845
+ * ref.current?.finishRefresh('success');
1846
+ * ```
1847
+ */
1848
+ interface FlutterCupertinoAlertElement extends WebFElementWithMethods<{
1849
+ /**
1850
+ * Show the alert dialog.
1851
+ * Options override the current title/message for this call only.
1852
+ */
1853
+ show(options: FlutterCupertinoAlertOptions): void;
1854
+ /**
1855
+ * Hide the alert dialog if it is currently visible.
1856
+ */
1857
+ hide(): void;
1858
+ }> {
345
1859
  }
346
1860
  /**
347
- * Properties for <flutter-cupertino-tab-bar-item>
348
- Child item used within the TabBar; provides title and icon.
1861
+ * Properties for <flutter-cupertino-alert>
1862
+ Imperative wrapper around Flutter's CupertinoAlertDialog.
349
1863
  *
350
1864
  * @example
351
1865
  * ```tsx
1866
+ * const ref = useRef<FlutterCupertinoAlertElement>(null);
352
1867
  *
353
- * <FlutterCupertinoTabBarItem
1868
+ * <FlutterCupertinoAlert
1869
+ * ref={ref}
354
1870
  * // Add props here
355
1871
  * >
356
1872
  * Content
357
- * </FlutterCupertinoTabBarItem>
1873
+ * </FlutterCupertinoAlert>
1874
+ *
1875
+ * // Call methods on the element
1876
+ * ref.current?.finishRefresh('success');
358
1877
  * ```
359
1878
  */
360
- declare const FlutterCupertinoTabBarItem: React.ForwardRefExoticComponent<FlutterCupertinoTabBarItemProps & {
1879
+ declare const FlutterCupertinoAlert: React.ForwardRefExoticComponent<FlutterCupertinoAlertProps & {
361
1880
  className?: string;
362
1881
  style?: React.CSSProperties;
363
1882
  children?: React.ReactNode;
364
- } & React.RefAttributes<FlutterCupertinoTabBarItemElement>>;
1883
+ } & React.RefAttributes<FlutterCupertinoAlertElement>>;
365
1884
 
366
- interface FlutterCupertinoTabViewProps {
367
- /**
368
- * Default title used by the Navigator for the top-most route.
369
- */
370
- defaultTitle?: string;
371
- /**
372
- * Restoration scope ID to enable state restoration for this tab's Navigator.
373
- */
374
- restorationScopeId?: string;
1885
+ interface FlutterCupertinoToastOptions {
1886
+ content: string;
1887
+ type?: 'normal' | 'success' | 'warning' | 'error' | 'loading';
1888
+ duration?: number;
1889
+ }
1890
+ interface FlutterCupertinoToastProps {
375
1891
  /**
376
1892
  * HTML id attribute
377
1893
  */
@@ -389,42 +1905,77 @@ interface FlutterCupertinoTabViewProps {
389
1905
  */
390
1906
  className?: string;
391
1907
  }
392
- interface FlutterCupertinoTabViewElement extends WebFElementWithMethods<{}> {
1908
+ /**
1909
+ * Element interface with methods accessible via ref
1910
+ * @example
1911
+ * ```tsx
1912
+ * const ref = useRef<FlutterCupertinoToastElement>(null);
1913
+ * // Call methods on the element
1914
+ * ref.current?.finishRefresh('success');
1915
+ * ```
1916
+ */
1917
+ interface FlutterCupertinoToastElement extends WebFElementWithMethods<{
1918
+ show(options: FlutterCupertinoToastOptions): void;
1919
+ close(): void;
1920
+ }> {
393
1921
  }
394
1922
  /**
395
- * Properties for <flutter-cupertino-tab-view>
396
- Provides an iOS-style per-tab Navigator. Used inside TabScaffold tabs.
1923
+ * FlutterCupertinoToast - WebF FlutterCupertinoToast component
397
1924
  *
398
1925
  * @example
399
1926
  * ```tsx
1927
+ * const ref = useRef<FlutterCupertinoToastElement>(null);
400
1928
  *
401
- * <FlutterCupertinoTabView
1929
+ * <FlutterCupertinoToast
1930
+ * ref={ref}
402
1931
  * // Add props here
403
1932
  * >
404
1933
  * Content
405
- * </FlutterCupertinoTabView>
1934
+ * </FlutterCupertinoToast>
1935
+ *
1936
+ * // Call methods on the element
1937
+ * ref.current?.finishRefresh('success');
406
1938
  * ```
407
1939
  */
408
- declare const FlutterCupertinoTabView: React.ForwardRefExoticComponent<FlutterCupertinoTabViewProps & {
1940
+ declare const FlutterCupertinoToast: React.ForwardRefExoticComponent<FlutterCupertinoToastProps & {
409
1941
  className?: string;
410
1942
  style?: React.CSSProperties;
411
1943
  children?: React.ReactNode;
412
- } & React.RefAttributes<FlutterCupertinoTabViewElement>>;
1944
+ } & React.RefAttributes<FlutterCupertinoToastElement>>;
413
1945
 
414
- interface FlutterCupertinoTabScaffoldProps {
1946
+ interface FlutterCupertinoTimerPickerProps {
415
1947
  /**
416
- * Zero-based index of the active tab.
417
- * Default: 0. Values outside range are clamped.
1948
+ * mode property
1949
+ * @default undefined
418
1950
  */
419
- currentIndex?: number;
1951
+ mode?: string;
420
1952
  /**
421
- * Whether to avoid bottom insets (e.g., when keyboard appears).
422
- * Boolean attribute; presence means true.
423
- * Default: true.
1953
+ * initialTimerDuration property
1954
+ * @default undefined
424
1955
  */
425
- resizeToAvoidBottomInset?: string;
1956
+ initialTimerDuration?: number;
426
1957
  /**
427
- * Fired when the active tab changes. detail = current index
1958
+ * minuteInterval property
1959
+ * @default undefined
1960
+ */
1961
+ minuteInterval?: number;
1962
+ /**
1963
+ * secondInterval property
1964
+ * @default undefined
1965
+ */
1966
+ secondInterval?: number;
1967
+ /**
1968
+ * backgroundColor property
1969
+ * @default undefined
1970
+ */
1971
+ backgroundColor?: string;
1972
+ /**
1973
+ * height property
1974
+ * @default undefined
1975
+ */
1976
+ height?: number;
1977
+ /**
1978
+ * change event handler
428
1979
  */
429
1980
  onChange?: (event: CustomEvent<number>) => void;
430
1981
  /**
@@ -444,32 +1995,81 @@ interface FlutterCupertinoTabScaffoldProps {
444
1995
  */
445
1996
  className?: string;
446
1997
  }
447
- interface FlutterCupertinoTabScaffoldElement extends WebFElementWithMethods<{}> {
1998
+ interface FlutterCupertinoTimerPickerElement extends WebFElementWithMethods<{}> {
448
1999
  }
449
2000
  /**
450
- * Properties for <flutter-cupertino-tab-scaffold>
451
- A container that renders a bottom tab bar and tabbed content (iOS style).
2001
+ * FlutterCupertinoTimerPicker - WebF FlutterCupertinoTimerPicker component
452
2002
  *
453
2003
  * @example
454
2004
  * ```tsx
455
2005
  *
456
- * <FlutterCupertinoTabScaffold
2006
+ * <FlutterCupertinoTimerPicker
457
2007
  * // Add props here
458
2008
  * >
459
2009
  * Content
460
- * </FlutterCupertinoTabScaffold>
2010
+ * </FlutterCupertinoTimerPicker>
461
2011
  * ```
462
2012
  */
463
- declare const FlutterCupertinoTabScaffold: React.ForwardRefExoticComponent<FlutterCupertinoTabScaffoldProps & {
2013
+ declare const FlutterCupertinoTimerPicker: React.ForwardRefExoticComponent<FlutterCupertinoTimerPickerProps & {
464
2014
  className?: string;
465
2015
  style?: React.CSSProperties;
466
2016
  children?: React.ReactNode;
467
- } & React.RefAttributes<FlutterCupertinoTabScaffoldElement>>;
468
- interface FlutterCupertinoTabScaffoldTabProps {
2017
+ } & React.RefAttributes<FlutterCupertinoTimerPickerElement>>;
2018
+
2019
+ interface FlutterCupertinoTextareaProps {
469
2020
  /**
470
- * Label shown in the tab bar for this tab.
2021
+ * val property
2022
+ * @default undefined
471
2023
  */
472
- title?: string;
2024
+ val?: string;
2025
+ /**
2026
+ * placeholder property
2027
+ * @default undefined
2028
+ */
2029
+ placeholder?: string;
2030
+ /**
2031
+ * disabled property
2032
+ * @default undefined
2033
+ */
2034
+ disabled?: boolean;
2035
+ /**
2036
+ * readonly property
2037
+ * @default undefined
2038
+ */
2039
+ readonly?: boolean;
2040
+ /**
2041
+ * maxLength property
2042
+ * @default undefined
2043
+ */
2044
+ maxLength?: number;
2045
+ /**
2046
+ * rows property
2047
+ * @default undefined
2048
+ */
2049
+ rows?: number;
2050
+ /**
2051
+ * showCount property
2052
+ * @default undefined
2053
+ */
2054
+ showCount?: boolean;
2055
+ /**
2056
+ * autoSize property
2057
+ * @default undefined
2058
+ */
2059
+ autoSize?: boolean;
2060
+ /**
2061
+ * transparent property
2062
+ * @default undefined
2063
+ */
2064
+ transparent?: boolean;
2065
+ /**
2066
+ * input event handler
2067
+ */
2068
+ onInput?: (event: CustomEvent<string>) => void;
2069
+ /**
2070
+ * complete event handler
2071
+ */
2072
+ onComplete?: (event: Event) => void;
473
2073
  /**
474
2074
  * HTML id attribute
475
2075
  */
@@ -487,27 +2087,44 @@ interface FlutterCupertinoTabScaffoldTabProps {
487
2087
  */
488
2088
  className?: string;
489
2089
  }
490
- interface FlutterCupertinoTabScaffoldTabElement extends WebFElementWithMethods<{}> {
2090
+ /**
2091
+ * Element interface with methods accessible via ref
2092
+ * @example
2093
+ * ```tsx
2094
+ * const ref = useRef<FlutterCupertinoTextareaElement>(null);
2095
+ * // Call methods on the element
2096
+ * ref.current?.finishRefresh('success');
2097
+ * ```
2098
+ */
2099
+ interface FlutterCupertinoTextareaElement extends WebFElementWithMethods<{
2100
+ focus(): void;
2101
+ blur(): void;
2102
+ clear(): void;
2103
+ }> {
491
2104
  }
492
2105
  /**
493
- * Properties for <flutter-cupertino-tab-scaffold-tab>
494
- Child item used within the TabScaffold; provides title and content for a tab.
2106
+ * FlutterCupertinoTextarea - WebF FlutterCupertinoTextarea component
495
2107
  *
496
2108
  * @example
497
2109
  * ```tsx
2110
+ * const ref = useRef<FlutterCupertinoTextareaElement>(null);
498
2111
  *
499
- * <FlutterCupertinoTabScaffoldTab
2112
+ * <FlutterCupertinoTextarea
2113
+ * ref={ref}
500
2114
  * // Add props here
501
2115
  * >
502
2116
  * Content
503
- * </FlutterCupertinoTabScaffoldTab>
2117
+ * </FlutterCupertinoTextarea>
2118
+ *
2119
+ * // Call methods on the element
2120
+ * ref.current?.finishRefresh('success');
504
2121
  * ```
505
2122
  */
506
- declare const FlutterCupertinoTabScaffoldTab: React.ForwardRefExoticComponent<FlutterCupertinoTabScaffoldTabProps & {
2123
+ declare const FlutterCupertinoTextarea: React.ForwardRefExoticComponent<FlutterCupertinoTextareaProps & {
507
2124
  className?: string;
508
2125
  style?: React.CSSProperties;
509
2126
  children?: React.ReactNode;
510
- } & React.RefAttributes<FlutterCupertinoTabScaffoldTabElement>>;
2127
+ } & React.RefAttributes<FlutterCupertinoTextareaElement>>;
511
2128
 
512
2129
  interface FlutterCupertinoSwitchProps {
513
2130
  /**
@@ -1607,1450 +3224,27 @@ interface FlutterCupertinoInputPrefixProps {
1607
3224
  */
1608
3225
  className?: string;
1609
3226
  }
1610
- interface FlutterCupertinoInputPrefixElement extends WebFElementWithMethods<{}> {
1611
- }
1612
- /**
1613
- * FlutterCupertinoInputPrefix - WebF FlutterCupertinoInputPrefix component
1614
- *
1615
- * @example
1616
- * ```tsx
1617
- *
1618
- * <FlutterCupertinoInputPrefix
1619
- * // Add props here
1620
- * >
1621
- * Content
1622
- * </FlutterCupertinoInputPrefix>
1623
- * ```
1624
- */
1625
- declare const FlutterCupertinoInputPrefix: React.ForwardRefExoticComponent<FlutterCupertinoInputPrefixProps & {
1626
- className?: string;
1627
- style?: React.CSSProperties;
1628
- children?: React.ReactNode;
1629
- } & React.RefAttributes<FlutterCupertinoInputPrefixElement>>;
1630
- interface FlutterCupertinoInputSuffixProps {
1631
- /**
1632
- * HTML id attribute
1633
- */
1634
- id?: string;
1635
- /**
1636
- * Additional CSS styles
1637
- */
1638
- style?: React.CSSProperties;
1639
- /**
1640
- * Children elements
1641
- */
1642
- children?: React.ReactNode;
1643
- /**
1644
- * Additional CSS class names
1645
- */
1646
- className?: string;
1647
- }
1648
- interface FlutterCupertinoInputSuffixElement extends WebFElementWithMethods<{}> {
3227
+ interface FlutterCupertinoInputPrefixElement extends WebFElementWithMethods<{}> {
1649
3228
  }
1650
3229
  /**
1651
- * FlutterCupertinoInputSuffix - WebF FlutterCupertinoInputSuffix component
3230
+ * FlutterCupertinoInputPrefix - WebF FlutterCupertinoInputPrefix component
1652
3231
  *
1653
3232
  * @example
1654
3233
  * ```tsx
1655
3234
  *
1656
- * <FlutterCupertinoInputSuffix
3235
+ * <FlutterCupertinoInputPrefix
1657
3236
  * // Add props here
1658
3237
  * >
1659
3238
  * Content
1660
- * </FlutterCupertinoInputSuffix>
3239
+ * </FlutterCupertinoInputPrefix>
1661
3240
  * ```
1662
3241
  */
1663
- declare const FlutterCupertinoInputSuffix: React.ForwardRefExoticComponent<FlutterCupertinoInputSuffixProps & {
3242
+ declare const FlutterCupertinoInputPrefix: React.ForwardRefExoticComponent<FlutterCupertinoInputPrefixProps & {
1664
3243
  className?: string;
1665
3244
  style?: React.CSSProperties;
1666
3245
  children?: React.ReactNode;
1667
- } & React.RefAttributes<FlutterCupertinoInputSuffixElement>>;
1668
-
1669
- declare const CupertinoIcons: {
1670
- readonly add: "add";
1671
- readonly add_circled: "add_circled";
1672
- readonly add_circled_solid: "add_circled_solid";
1673
- readonly airplane: "airplane";
1674
- readonly alarm: "alarm";
1675
- readonly alarm_fill: "alarm_fill";
1676
- readonly alt: "alt";
1677
- readonly ant: "ant";
1678
- readonly ant_circle: "ant_circle";
1679
- readonly ant_circle_fill: "ant_circle_fill";
1680
- readonly ant_fill: "ant_fill";
1681
- readonly antenna_radiowaves_left_right: "antenna_radiowaves_left_right";
1682
- readonly app: "app";
1683
- readonly app_badge: "app_badge";
1684
- readonly app_badge_fill: "app_badge_fill";
1685
- readonly app_fill: "app_fill";
1686
- readonly archivebox: "archivebox";
1687
- readonly archivebox_fill: "archivebox_fill";
1688
- readonly arrow_2_circlepath: "arrow_2_circlepath";
1689
- readonly arrow_2_circlepath_circle: "arrow_2_circlepath_circle";
1690
- readonly arrow_2_circlepath_circle_fill: "arrow_2_circlepath_circle_fill";
1691
- readonly arrow_2_squarepath: "arrow_2_squarepath";
1692
- readonly arrow_3_trianglepath: "arrow_3_trianglepath";
1693
- readonly arrow_branch: "arrow_branch";
1694
- readonly arrow_clockwise: "arrow_clockwise";
1695
- readonly arrow_clockwise_circle: "arrow_clockwise_circle";
1696
- readonly arrow_clockwise_circle_fill: "arrow_clockwise_circle_fill";
1697
- readonly arrow_counterclockwise: "arrow_counterclockwise";
1698
- readonly arrow_counterclockwise_circle: "arrow_counterclockwise_circle";
1699
- readonly arrow_counterclockwise_circle_fill: "arrow_counterclockwise_circle_fill";
1700
- readonly arrow_down: "arrow_down";
1701
- readonly arrow_down_circle: "arrow_down_circle";
1702
- readonly arrow_down_circle_fill: "arrow_down_circle_fill";
1703
- readonly arrow_down_doc: "arrow_down_doc";
1704
- readonly arrow_down_doc_fill: "arrow_down_doc_fill";
1705
- readonly arrow_down_left: "arrow_down_left";
1706
- readonly arrow_down_left_circle: "arrow_down_left_circle";
1707
- readonly arrow_down_left_circle_fill: "arrow_down_left_circle_fill";
1708
- readonly arrow_down_left_square: "arrow_down_left_square";
1709
- readonly arrow_down_left_square_fill: "arrow_down_left_square_fill";
1710
- readonly arrow_down_right: "arrow_down_right";
1711
- readonly arrow_down_right_arrow_up_left: "arrow_down_right_arrow_up_left";
1712
- readonly arrow_down_right_circle: "arrow_down_right_circle";
1713
- readonly arrow_down_right_circle_fill: "arrow_down_right_circle_fill";
1714
- readonly arrow_down_right_square: "arrow_down_right_square";
1715
- readonly arrow_down_right_square_fill: "arrow_down_right_square_fill";
1716
- readonly arrow_down_square: "arrow_down_square";
1717
- readonly arrow_down_square_fill: "arrow_down_square_fill";
1718
- readonly arrow_down_to_line: "arrow_down_to_line";
1719
- readonly arrow_down_to_line_alt: "arrow_down_to_line_alt";
1720
- readonly arrow_left: "arrow_left";
1721
- readonly arrow_left_circle: "arrow_left_circle";
1722
- readonly arrow_left_circle_fill: "arrow_left_circle_fill";
1723
- readonly arrow_left_right: "arrow_left_right";
1724
- readonly arrow_left_right_circle: "arrow_left_right_circle";
1725
- readonly arrow_left_right_circle_fill: "arrow_left_right_circle_fill";
1726
- readonly arrow_left_right_square: "arrow_left_right_square";
1727
- readonly arrow_left_right_square_fill: "arrow_left_right_square_fill";
1728
- readonly arrow_left_square: "arrow_left_square";
1729
- readonly arrow_left_square_fill: "arrow_left_square_fill";
1730
- readonly arrow_left_to_line: "arrow_left_to_line";
1731
- readonly arrow_left_to_line_alt: "arrow_left_to_line_alt";
1732
- readonly arrow_merge: "arrow_merge";
1733
- readonly arrow_right: "arrow_right";
1734
- readonly arrow_right_arrow_left: "arrow_right_arrow_left";
1735
- readonly arrow_right_arrow_left_circle: "arrow_right_arrow_left_circle";
1736
- readonly arrow_right_arrow_left_circle_fill: "arrow_right_arrow_left_circle_fill";
1737
- readonly arrow_right_arrow_left_square: "arrow_right_arrow_left_square";
1738
- readonly arrow_right_arrow_left_square_fill: "arrow_right_arrow_left_square_fill";
1739
- readonly arrow_right_circle: "arrow_right_circle";
1740
- readonly arrow_right_circle_fill: "arrow_right_circle_fill";
1741
- readonly arrow_right_square: "arrow_right_square";
1742
- readonly arrow_right_square_fill: "arrow_right_square_fill";
1743
- readonly arrow_right_to_line: "arrow_right_to_line";
1744
- readonly arrow_right_to_line_alt: "arrow_right_to_line_alt";
1745
- readonly arrow_swap: "arrow_swap";
1746
- readonly arrow_turn_down_left: "arrow_turn_down_left";
1747
- readonly arrow_turn_down_right: "arrow_turn_down_right";
1748
- readonly arrow_turn_left_down: "arrow_turn_left_down";
1749
- readonly arrow_turn_left_up: "arrow_turn_left_up";
1750
- readonly arrow_turn_right_down: "arrow_turn_right_down";
1751
- readonly arrow_turn_right_up: "arrow_turn_right_up";
1752
- readonly arrow_turn_up_left: "arrow_turn_up_left";
1753
- readonly arrow_turn_up_right: "arrow_turn_up_right";
1754
- readonly arrow_up: "arrow_up";
1755
- readonly arrow_up_arrow_down: "arrow_up_arrow_down";
1756
- readonly arrow_up_arrow_down_circle: "arrow_up_arrow_down_circle";
1757
- readonly arrow_up_arrow_down_circle_fill: "arrow_up_arrow_down_circle_fill";
1758
- readonly arrow_up_arrow_down_square: "arrow_up_arrow_down_square";
1759
- readonly arrow_up_arrow_down_square_fill: "arrow_up_arrow_down_square_fill";
1760
- readonly arrow_up_bin: "arrow_up_bin";
1761
- readonly arrow_up_bin_fill: "arrow_up_bin_fill";
1762
- readonly arrow_up_circle: "arrow_up_circle";
1763
- readonly arrow_up_circle_fill: "arrow_up_circle_fill";
1764
- readonly arrow_up_doc: "arrow_up_doc";
1765
- readonly arrow_up_doc_fill: "arrow_up_doc_fill";
1766
- readonly arrow_up_down: "arrow_up_down";
1767
- readonly arrow_up_down_circle: "arrow_up_down_circle";
1768
- readonly arrow_up_down_circle_fill: "arrow_up_down_circle_fill";
1769
- readonly arrow_up_down_square: "arrow_up_down_square";
1770
- readonly arrow_up_down_square_fill: "arrow_up_down_square_fill";
1771
- readonly arrow_up_left: "arrow_up_left";
1772
- readonly arrow_up_left_arrow_down_right: "arrow_up_left_arrow_down_right";
1773
- readonly arrow_up_left_circle: "arrow_up_left_circle";
1774
- readonly arrow_up_left_circle_fill: "arrow_up_left_circle_fill";
1775
- readonly arrow_up_left_square: "arrow_up_left_square";
1776
- readonly arrow_up_left_square_fill: "arrow_up_left_square_fill";
1777
- readonly arrow_up_right: "arrow_up_right";
1778
- readonly arrow_up_right_circle: "arrow_up_right_circle";
1779
- readonly arrow_up_right_circle_fill: "arrow_up_right_circle_fill";
1780
- readonly arrow_up_right_diamond: "arrow_up_right_diamond";
1781
- readonly arrow_up_right_diamond_fill: "arrow_up_right_diamond_fill";
1782
- readonly arrow_up_right_square: "arrow_up_right_square";
1783
- readonly arrow_up_right_square_fill: "arrow_up_right_square_fill";
1784
- readonly arrow_up_square: "arrow_up_square";
1785
- readonly arrow_up_square_fill: "arrow_up_square_fill";
1786
- readonly arrow_up_to_line: "arrow_up_to_line";
1787
- readonly arrow_up_to_line_alt: "arrow_up_to_line_alt";
1788
- readonly arrow_uturn_down: "arrow_uturn_down";
1789
- readonly arrow_uturn_down_circle: "arrow_uturn_down_circle";
1790
- readonly arrow_uturn_down_circle_fill: "arrow_uturn_down_circle_fill";
1791
- readonly arrow_uturn_down_square: "arrow_uturn_down_square";
1792
- readonly arrow_uturn_down_square_fill: "arrow_uturn_down_square_fill";
1793
- readonly arrow_uturn_left: "arrow_uturn_left";
1794
- readonly arrow_uturn_left_circle: "arrow_uturn_left_circle";
1795
- readonly arrow_uturn_left_circle_fill: "arrow_uturn_left_circle_fill";
1796
- readonly arrow_uturn_left_square: "arrow_uturn_left_square";
1797
- readonly arrow_uturn_left_square_fill: "arrow_uturn_left_square_fill";
1798
- readonly arrow_uturn_right: "arrow_uturn_right";
1799
- readonly arrow_uturn_right_circle: "arrow_uturn_right_circle";
1800
- readonly arrow_uturn_right_circle_fill: "arrow_uturn_right_circle_fill";
1801
- readonly arrow_uturn_right_square: "arrow_uturn_right_square";
1802
- readonly arrow_uturn_right_square_fill: "arrow_uturn_right_square_fill";
1803
- readonly arrow_uturn_up: "arrow_uturn_up";
1804
- readonly arrow_uturn_up_circle: "arrow_uturn_up_circle";
1805
- readonly arrow_uturn_up_circle_fill: "arrow_uturn_up_circle_fill";
1806
- readonly arrow_uturn_up_square: "arrow_uturn_up_square";
1807
- readonly arrow_uturn_up_square_fill: "arrow_uturn_up_square_fill";
1808
- readonly arrowshape_turn_up_left: "arrowshape_turn_up_left";
1809
- readonly arrowshape_turn_up_left_2: "arrowshape_turn_up_left_2";
1810
- readonly arrowshape_turn_up_left_2_fill: "arrowshape_turn_up_left_2_fill";
1811
- readonly arrowshape_turn_up_left_circle: "arrowshape_turn_up_left_circle";
1812
- readonly arrowshape_turn_up_left_circle_fill: "arrowshape_turn_up_left_circle_fill";
1813
- readonly arrowshape_turn_up_left_fill: "arrowshape_turn_up_left_fill";
1814
- readonly arrowshape_turn_up_right: "arrowshape_turn_up_right";
1815
- readonly arrowshape_turn_up_right_circle: "arrowshape_turn_up_right_circle";
1816
- readonly arrowshape_turn_up_right_circle_fill: "arrowshape_turn_up_right_circle_fill";
1817
- readonly arrowshape_turn_up_right_fill: "arrowshape_turn_up_right_fill";
1818
- readonly arrowtriangle_down: "arrowtriangle_down";
1819
- readonly arrowtriangle_down_circle: "arrowtriangle_down_circle";
1820
- readonly arrowtriangle_down_circle_fill: "arrowtriangle_down_circle_fill";
1821
- readonly arrowtriangle_down_fill: "arrowtriangle_down_fill";
1822
- readonly arrowtriangle_down_square: "arrowtriangle_down_square";
1823
- readonly arrowtriangle_down_square_fill: "arrowtriangle_down_square_fill";
1824
- readonly arrowtriangle_left: "arrowtriangle_left";
1825
- readonly arrowtriangle_left_circle: "arrowtriangle_left_circle";
1826
- readonly arrowtriangle_left_circle_fill: "arrowtriangle_left_circle_fill";
1827
- readonly arrowtriangle_left_fill: "arrowtriangle_left_fill";
1828
- readonly arrowtriangle_left_square: "arrowtriangle_left_square";
1829
- readonly arrowtriangle_left_square_fill: "arrowtriangle_left_square_fill";
1830
- readonly arrowtriangle_right: "arrowtriangle_right";
1831
- readonly arrowtriangle_right_circle: "arrowtriangle_right_circle";
1832
- readonly arrowtriangle_right_circle_fill: "arrowtriangle_right_circle_fill";
1833
- readonly arrowtriangle_right_fill: "arrowtriangle_right_fill";
1834
- readonly arrowtriangle_right_square: "arrowtriangle_right_square";
1835
- readonly arrowtriangle_right_square_fill: "arrowtriangle_right_square_fill";
1836
- readonly arrowtriangle_up: "arrowtriangle_up";
1837
- readonly arrowtriangle_up_circle: "arrowtriangle_up_circle";
1838
- readonly arrowtriangle_up_circle_fill: "arrowtriangle_up_circle_fill";
1839
- readonly arrowtriangle_up_fill: "arrowtriangle_up_fill";
1840
- readonly arrowtriangle_up_square: "arrowtriangle_up_square";
1841
- readonly arrowtriangle_up_square_fill: "arrowtriangle_up_square_fill";
1842
- readonly asterisk_circle: "asterisk_circle";
1843
- readonly asterisk_circle_fill: "asterisk_circle_fill";
1844
- readonly at: "at";
1845
- readonly at_badge_minus: "at_badge_minus";
1846
- readonly at_badge_plus: "at_badge_plus";
1847
- readonly at_circle: "at_circle";
1848
- readonly at_circle_fill: "at_circle_fill";
1849
- readonly back: "back";
1850
- readonly backward: "backward";
1851
- readonly backward_end: "backward_end";
1852
- readonly backward_end_alt: "backward_end_alt";
1853
- readonly backward_end_alt_fill: "backward_end_alt_fill";
1854
- readonly backward_end_fill: "backward_end_fill";
1855
- readonly backward_fill: "backward_fill";
1856
- readonly badge_plus_radiowaves_right: "badge_plus_radiowaves_right";
1857
- readonly bag: "bag";
1858
- readonly bag_badge_minus: "bag_badge_minus";
1859
- readonly bag_badge_plus: "bag_badge_plus";
1860
- readonly bag_fill: "bag_fill";
1861
- readonly bag_fill_badge_minus: "bag_fill_badge_minus";
1862
- readonly bag_fill_badge_plus: "bag_fill_badge_plus";
1863
- readonly bandage: "bandage";
1864
- readonly bandage_fill: "bandage_fill";
1865
- readonly barcode: "barcode";
1866
- readonly barcode_viewfinder: "barcode_viewfinder";
1867
- readonly bars: "bars";
1868
- readonly battery_0: "battery_0";
1869
- readonly battery_100: "battery_100";
1870
- readonly battery_25: "battery_25";
1871
- readonly battery_25_percent: "battery_25_percent";
1872
- readonly battery_75_percent: "battery_75_percent";
1873
- readonly battery_charging: "battery_charging";
1874
- readonly battery_empty: "battery_empty";
1875
- readonly battery_full: "battery_full";
1876
- readonly bed_double: "bed_double";
1877
- readonly bed_double_fill: "bed_double_fill";
1878
- readonly bell: "bell";
1879
- readonly bell_circle: "bell_circle";
1880
- readonly bell_circle_fill: "bell_circle_fill";
1881
- readonly bell_fill: "bell_fill";
1882
- readonly bell_slash: "bell_slash";
1883
- readonly bell_slash_fill: "bell_slash_fill";
1884
- readonly bell_solid: "bell_solid";
1885
- readonly bin_xmark: "bin_xmark";
1886
- readonly bin_xmark_fill: "bin_xmark_fill";
1887
- readonly bitcoin: "bitcoin";
1888
- readonly bitcoin_circle: "bitcoin_circle";
1889
- readonly bitcoin_circle_fill: "bitcoin_circle_fill";
1890
- readonly bluetooth: "bluetooth";
1891
- readonly bold: "bold";
1892
- readonly bold_italic_underline: "bold_italic_underline";
1893
- readonly bold_underline: "bold_underline";
1894
- readonly bolt: "bolt";
1895
- readonly bolt_badge_a: "bolt_badge_a";
1896
- readonly bolt_badge_a_fill: "bolt_badge_a_fill";
1897
- readonly bolt_circle: "bolt_circle";
1898
- readonly bolt_circle_fill: "bolt_circle_fill";
1899
- readonly bolt_fill: "bolt_fill";
1900
- readonly bolt_horizontal: "bolt_horizontal";
1901
- readonly bolt_horizontal_circle: "bolt_horizontal_circle";
1902
- readonly bolt_horizontal_circle_fill: "bolt_horizontal_circle_fill";
1903
- readonly bolt_horizontal_fill: "bolt_horizontal_fill";
1904
- readonly bolt_slash: "bolt_slash";
1905
- readonly bolt_slash_fill: "bolt_slash_fill";
1906
- readonly book: "book";
1907
- readonly book_circle: "book_circle";
1908
- readonly book_circle_fill: "book_circle_fill";
1909
- readonly book_fill: "book_fill";
1910
- readonly book_solid: "book_solid";
1911
- readonly bookmark: "bookmark";
1912
- readonly bookmark_fill: "bookmark_fill";
1913
- readonly bookmark_solid: "bookmark_solid";
1914
- readonly briefcase: "briefcase";
1915
- readonly briefcase_fill: "briefcase_fill";
1916
- readonly brightness: "brightness";
1917
- readonly brightness_solid: "brightness_solid";
1918
- readonly bubble_left: "bubble_left";
1919
- readonly bubble_left_bubble_right: "bubble_left_bubble_right";
1920
- readonly bubble_left_bubble_right_fill: "bubble_left_bubble_right_fill";
1921
- readonly bubble_left_fill: "bubble_left_fill";
1922
- readonly bubble_middle_bottom: "bubble_middle_bottom";
1923
- readonly bubble_middle_bottom_fill: "bubble_middle_bottom_fill";
1924
- readonly bubble_middle_top: "bubble_middle_top";
1925
- readonly bubble_middle_top_fill: "bubble_middle_top_fill";
1926
- readonly bubble_right: "bubble_right";
1927
- readonly bubble_right_fill: "bubble_right_fill";
1928
- readonly building_2_fill: "building_2_fill";
1929
- readonly burn: "burn";
1930
- readonly burst: "burst";
1931
- readonly burst_fill: "burst_fill";
1932
- readonly bus: "bus";
1933
- readonly calendar: "calendar";
1934
- readonly calendar_badge_minus: "calendar_badge_minus";
1935
- readonly calendar_badge_plus: "calendar_badge_plus";
1936
- readonly calendar_circle: "calendar_circle";
1937
- readonly calendar_circle_fill: "calendar_circle_fill";
1938
- readonly calendar_today: "calendar_today";
1939
- readonly camera: "camera";
1940
- readonly camera_circle: "camera_circle";
1941
- readonly camera_circle_fill: "camera_circle_fill";
1942
- readonly camera_fill: "camera_fill";
1943
- readonly camera_on_rectangle: "camera_on_rectangle";
1944
- readonly camera_on_rectangle_fill: "camera_on_rectangle_fill";
1945
- readonly camera_rotate: "camera_rotate";
1946
- readonly camera_rotate_fill: "camera_rotate_fill";
1947
- readonly camera_viewfinder: "camera_viewfinder";
1948
- readonly capslock: "capslock";
1949
- readonly capslock_fill: "capslock_fill";
1950
- readonly capsule: "capsule";
1951
- readonly capsule_fill: "capsule_fill";
1952
- readonly captions_bubble: "captions_bubble";
1953
- readonly captions_bubble_fill: "captions_bubble_fill";
1954
- readonly car: "car";
1955
- readonly car_detailed: "car_detailed";
1956
- readonly car_fill: "car_fill";
1957
- readonly cart: "cart";
1958
- readonly cart_badge_minus: "cart_badge_minus";
1959
- readonly cart_badge_plus: "cart_badge_plus";
1960
- readonly cart_fill: "cart_fill";
1961
- readonly cart_fill_badge_minus: "cart_fill_badge_minus";
1962
- readonly cart_fill_badge_plus: "cart_fill_badge_plus";
1963
- readonly chart_bar: "chart_bar";
1964
- readonly chart_bar_alt_fill: "chart_bar_alt_fill";
1965
- readonly chart_bar_circle: "chart_bar_circle";
1966
- readonly chart_bar_circle_fill: "chart_bar_circle_fill";
1967
- readonly chart_bar_fill: "chart_bar_fill";
1968
- readonly chart_bar_square: "chart_bar_square";
1969
- readonly chart_bar_square_fill: "chart_bar_square_fill";
1970
- readonly chart_pie: "chart_pie";
1971
- readonly chart_pie_fill: "chart_pie_fill";
1972
- readonly chat_bubble: "chat_bubble";
1973
- readonly chat_bubble_2: "chat_bubble_2";
1974
- readonly chat_bubble_2_fill: "chat_bubble_2_fill";
1975
- readonly chat_bubble_fill: "chat_bubble_fill";
1976
- readonly chat_bubble_text: "chat_bubble_text";
1977
- readonly chat_bubble_text_fill: "chat_bubble_text_fill";
1978
- readonly check_mark: "check_mark";
1979
- readonly check_mark_circled: "check_mark_circled";
1980
- readonly check_mark_circled_solid: "check_mark_circled_solid";
1981
- readonly checkmark: "checkmark";
1982
- readonly checkmark_alt: "checkmark_alt";
1983
- readonly checkmark_alt_circle: "checkmark_alt_circle";
1984
- readonly checkmark_alt_circle_fill: "checkmark_alt_circle_fill";
1985
- readonly checkmark_circle: "checkmark_circle";
1986
- readonly checkmark_circle_fill: "checkmark_circle_fill";
1987
- readonly checkmark_rectangle: "checkmark_rectangle";
1988
- readonly checkmark_rectangle_fill: "checkmark_rectangle_fill";
1989
- readonly checkmark_seal: "checkmark_seal";
1990
- readonly checkmark_seal_fill: "checkmark_seal_fill";
1991
- readonly checkmark_shield: "checkmark_shield";
1992
- readonly checkmark_shield_fill: "checkmark_shield_fill";
1993
- readonly checkmark_square: "checkmark_square";
1994
- readonly checkmark_square_fill: "checkmark_square_fill";
1995
- readonly chevron_back: "chevron_back";
1996
- readonly chevron_compact_down: "chevron_compact_down";
1997
- readonly chevron_compact_left: "chevron_compact_left";
1998
- readonly chevron_compact_right: "chevron_compact_right";
1999
- readonly chevron_compact_up: "chevron_compact_up";
2000
- readonly chevron_down: "chevron_down";
2001
- readonly chevron_down_circle: "chevron_down_circle";
2002
- readonly chevron_down_circle_fill: "chevron_down_circle_fill";
2003
- readonly chevron_down_square: "chevron_down_square";
2004
- readonly chevron_down_square_fill: "chevron_down_square_fill";
2005
- readonly chevron_forward: "chevron_forward";
2006
- readonly chevron_left: "chevron_left";
2007
- readonly chevron_left_2: "chevron_left_2";
2008
- readonly chevron_left_circle: "chevron_left_circle";
2009
- readonly chevron_left_circle_fill: "chevron_left_circle_fill";
2010
- readonly chevron_left_slash_chevron_right: "chevron_left_slash_chevron_right";
2011
- readonly chevron_left_square: "chevron_left_square";
2012
- readonly chevron_left_square_fill: "chevron_left_square_fill";
2013
- readonly chevron_right: "chevron_right";
2014
- readonly chevron_right_2: "chevron_right_2";
2015
- readonly chevron_right_circle: "chevron_right_circle";
2016
- readonly chevron_right_circle_fill: "chevron_right_circle_fill";
2017
- readonly chevron_right_square: "chevron_right_square";
2018
- readonly chevron_right_square_fill: "chevron_right_square_fill";
2019
- readonly chevron_up: "chevron_up";
2020
- readonly chevron_up_chevron_down: "chevron_up_chevron_down";
2021
- readonly chevron_up_circle: "chevron_up_circle";
2022
- readonly chevron_up_circle_fill: "chevron_up_circle_fill";
2023
- readonly chevron_up_square: "chevron_up_square";
2024
- readonly chevron_up_square_fill: "chevron_up_square_fill";
2025
- readonly circle: "circle";
2026
- readonly circle_bottomthird_split: "circle_bottomthird_split";
2027
- readonly circle_fill: "circle_fill";
2028
- readonly circle_filled: "circle_filled";
2029
- readonly circle_grid_3x3: "circle_grid_3x3";
2030
- readonly circle_grid_3x3_fill: "circle_grid_3x3_fill";
2031
- readonly circle_grid_hex: "circle_grid_hex";
2032
- readonly circle_grid_hex_fill: "circle_grid_hex_fill";
2033
- readonly circle_lefthalf_fill: "circle_lefthalf_fill";
2034
- readonly circle_righthalf_fill: "circle_righthalf_fill";
2035
- readonly clear: "clear";
2036
- readonly clear_circled: "clear_circled";
2037
- readonly clear_circled_solid: "clear_circled_solid";
2038
- readonly clear_fill: "clear_fill";
2039
- readonly clear_thick: "clear_thick";
2040
- readonly clear_thick_circled: "clear_thick_circled";
2041
- readonly clock: "clock";
2042
- readonly clock_fill: "clock_fill";
2043
- readonly clock_solid: "clock_solid";
2044
- readonly cloud: "cloud";
2045
- readonly cloud_bolt: "cloud_bolt";
2046
- readonly cloud_bolt_fill: "cloud_bolt_fill";
2047
- readonly cloud_bolt_rain: "cloud_bolt_rain";
2048
- readonly cloud_bolt_rain_fill: "cloud_bolt_rain_fill";
2049
- readonly cloud_download: "cloud_download";
2050
- readonly cloud_download_fill: "cloud_download_fill";
2051
- readonly cloud_drizzle: "cloud_drizzle";
2052
- readonly cloud_drizzle_fill: "cloud_drizzle_fill";
2053
- readonly cloud_fill: "cloud_fill";
2054
- readonly cloud_fog: "cloud_fog";
2055
- readonly cloud_fog_fill: "cloud_fog_fill";
2056
- readonly cloud_hail: "cloud_hail";
2057
- readonly cloud_hail_fill: "cloud_hail_fill";
2058
- readonly cloud_heavyrain: "cloud_heavyrain";
2059
- readonly cloud_heavyrain_fill: "cloud_heavyrain_fill";
2060
- readonly cloud_moon: "cloud_moon";
2061
- readonly cloud_moon_bolt: "cloud_moon_bolt";
2062
- readonly cloud_moon_bolt_fill: "cloud_moon_bolt_fill";
2063
- readonly cloud_moon_fill: "cloud_moon_fill";
2064
- readonly cloud_moon_rain: "cloud_moon_rain";
2065
- readonly cloud_moon_rain_fill: "cloud_moon_rain_fill";
2066
- readonly cloud_rain: "cloud_rain";
2067
- readonly cloud_rain_fill: "cloud_rain_fill";
2068
- readonly cloud_sleet: "cloud_sleet";
2069
- readonly cloud_sleet_fill: "cloud_sleet_fill";
2070
- readonly cloud_snow: "cloud_snow";
2071
- readonly cloud_snow_fill: "cloud_snow_fill";
2072
- readonly cloud_sun: "cloud_sun";
2073
- readonly cloud_sun_bolt: "cloud_sun_bolt";
2074
- readonly cloud_sun_bolt_fill: "cloud_sun_bolt_fill";
2075
- readonly cloud_sun_fill: "cloud_sun_fill";
2076
- readonly cloud_sun_rain: "cloud_sun_rain";
2077
- readonly cloud_sun_rain_fill: "cloud_sun_rain_fill";
2078
- readonly cloud_upload: "cloud_upload";
2079
- readonly cloud_upload_fill: "cloud_upload_fill";
2080
- readonly collections: "collections";
2081
- readonly collections_solid: "collections_solid";
2082
- readonly color_filter: "color_filter";
2083
- readonly color_filter_fill: "color_filter_fill";
2084
- readonly command: "command";
2085
- readonly compass: "compass";
2086
- readonly compass_fill: "compass_fill";
2087
- readonly control: "control";
2088
- readonly conversation_bubble: "conversation_bubble";
2089
- readonly create: "create";
2090
- readonly create_solid: "create_solid";
2091
- readonly creditcard: "creditcard";
2092
- readonly creditcard_fill: "creditcard_fill";
2093
- readonly crop: "crop";
2094
- readonly crop_rotate: "crop_rotate";
2095
- readonly cube: "cube";
2096
- readonly cube_box: "cube_box";
2097
- readonly cube_box_fill: "cube_box_fill";
2098
- readonly cube_fill: "cube_fill";
2099
- readonly cursor_rays: "cursor_rays";
2100
- readonly decrease_indent: "decrease_indent";
2101
- readonly decrease_quotelevel: "decrease_quotelevel";
2102
- readonly delete: "delete";
2103
- readonly delete_left: "delete_left";
2104
- readonly delete_left_fill: "delete_left_fill";
2105
- readonly delete_right: "delete_right";
2106
- readonly delete_right_fill: "delete_right_fill";
2107
- readonly delete_simple: "delete_simple";
2108
- readonly delete_solid: "delete_solid";
2109
- readonly desktopcomputer: "desktopcomputer";
2110
- readonly device_desktop: "device_desktop";
2111
- readonly device_laptop: "device_laptop";
2112
- readonly device_phone_landscape: "device_phone_landscape";
2113
- readonly device_phone_portrait: "device_phone_portrait";
2114
- readonly dial: "dial";
2115
- readonly dial_fill: "dial_fill";
2116
- readonly divide: "divide";
2117
- readonly divide_circle: "divide_circle";
2118
- readonly divide_circle_fill: "divide_circle_fill";
2119
- readonly divide_square: "divide_square";
2120
- readonly divide_square_fill: "divide_square_fill";
2121
- readonly doc: "doc";
2122
- readonly doc_append: "doc_append";
2123
- readonly doc_chart: "doc_chart";
2124
- readonly doc_chart_fill: "doc_chart_fill";
2125
- readonly doc_checkmark: "doc_checkmark";
2126
- readonly doc_checkmark_fill: "doc_checkmark_fill";
2127
- readonly doc_circle: "doc_circle";
2128
- readonly doc_circle_fill: "doc_circle_fill";
2129
- readonly doc_fill: "doc_fill";
2130
- readonly doc_on_clipboard: "doc_on_clipboard";
2131
- readonly doc_on_clipboard_fill: "doc_on_clipboard_fill";
2132
- readonly doc_on_doc: "doc_on_doc";
2133
- readonly doc_on_doc_fill: "doc_on_doc_fill";
2134
- readonly doc_person: "doc_person";
2135
- readonly doc_person_fill: "doc_person_fill";
2136
- readonly doc_plaintext: "doc_plaintext";
2137
- readonly doc_richtext: "doc_richtext";
2138
- readonly doc_text: "doc_text";
2139
- readonly doc_text_fill: "doc_text_fill";
2140
- readonly doc_text_search: "doc_text_search";
2141
- readonly doc_text_viewfinder: "doc_text_viewfinder";
2142
- readonly dot_radiowaves_left_right: "dot_radiowaves_left_right";
2143
- readonly dot_radiowaves_right: "dot_radiowaves_right";
2144
- readonly dot_square: "dot_square";
2145
- readonly dot_square_fill: "dot_square_fill";
2146
- readonly double_music_note: "double_music_note";
2147
- readonly down_arrow: "down_arrow";
2148
- readonly download_circle: "download_circle";
2149
- readonly download_circle_fill: "download_circle_fill";
2150
- readonly drop: "drop";
2151
- readonly drop_fill: "drop_fill";
2152
- readonly drop_triangle: "drop_triangle";
2153
- readonly drop_triangle_fill: "drop_triangle_fill";
2154
- readonly ear: "ear";
2155
- readonly eject: "eject";
2156
- readonly eject_fill: "eject_fill";
2157
- readonly ellipses_bubble: "ellipses_bubble";
2158
- readonly ellipses_bubble_fill: "ellipses_bubble_fill";
2159
- readonly ellipsis: "ellipsis";
2160
- readonly ellipsis_circle: "ellipsis_circle";
2161
- readonly ellipsis_circle_fill: "ellipsis_circle_fill";
2162
- readonly ellipsis_vertical: "ellipsis_vertical";
2163
- readonly ellipsis_vertical_circle: "ellipsis_vertical_circle";
2164
- readonly ellipsis_vertical_circle_fill: "ellipsis_vertical_circle_fill";
2165
- readonly envelope: "envelope";
2166
- readonly envelope_badge: "envelope_badge";
2167
- readonly envelope_badge_fill: "envelope_badge_fill";
2168
- readonly envelope_circle: "envelope_circle";
2169
- readonly envelope_circle_fill: "envelope_circle_fill";
2170
- readonly envelope_fill: "envelope_fill";
2171
- readonly envelope_open: "envelope_open";
2172
- readonly envelope_open_fill: "envelope_open_fill";
2173
- readonly equal: "equal";
2174
- readonly equal_circle: "equal_circle";
2175
- readonly equal_circle_fill: "equal_circle_fill";
2176
- readonly equal_square: "equal_square";
2177
- readonly equal_square_fill: "equal_square_fill";
2178
- readonly escape: "escape";
2179
- readonly exclamationmark: "exclamationmark";
2180
- readonly exclamationmark_bubble: "exclamationmark_bubble";
2181
- readonly exclamationmark_bubble_fill: "exclamationmark_bubble_fill";
2182
- readonly exclamationmark_circle: "exclamationmark_circle";
2183
- readonly exclamationmark_circle_fill: "exclamationmark_circle_fill";
2184
- readonly exclamationmark_octagon: "exclamationmark_octagon";
2185
- readonly exclamationmark_octagon_fill: "exclamationmark_octagon_fill";
2186
- readonly exclamationmark_shield: "exclamationmark_shield";
2187
- readonly exclamationmark_shield_fill: "exclamationmark_shield_fill";
2188
- readonly exclamationmark_square: "exclamationmark_square";
2189
- readonly exclamationmark_square_fill: "exclamationmark_square_fill";
2190
- readonly exclamationmark_triangle: "exclamationmark_triangle";
2191
- readonly exclamationmark_triangle_fill: "exclamationmark_triangle_fill";
2192
- readonly eye: "eye";
2193
- readonly eye_fill: "eye_fill";
2194
- readonly eye_slash: "eye_slash";
2195
- readonly eye_slash_fill: "eye_slash_fill";
2196
- readonly eye_solid: "eye_solid";
2197
- readonly eyedropper: "eyedropper";
2198
- readonly eyedropper_full: "eyedropper_full";
2199
- readonly eyedropper_halffull: "eyedropper_halffull";
2200
- readonly eyeglasses: "eyeglasses";
2201
- readonly f_cursive: "f_cursive";
2202
- readonly f_cursive_circle: "f_cursive_circle";
2203
- readonly f_cursive_circle_fill: "f_cursive_circle_fill";
2204
- readonly film: "film";
2205
- readonly film_fill: "film_fill";
2206
- readonly flag: "flag";
2207
- readonly flag_circle: "flag_circle";
2208
- readonly flag_circle_fill: "flag_circle_fill";
2209
- readonly flag_fill: "flag_fill";
2210
- readonly flag_slash: "flag_slash";
2211
- readonly flag_slash_fill: "flag_slash_fill";
2212
- readonly flame: "flame";
2213
- readonly flame_fill: "flame_fill";
2214
- readonly floppy_disk: "floppy_disk";
2215
- readonly flowchart: "flowchart";
2216
- readonly flowchart_fill: "flowchart_fill";
2217
- readonly folder: "folder";
2218
- readonly folder_badge_minus: "folder_badge_minus";
2219
- readonly folder_badge_person_crop: "folder_badge_person_crop";
2220
- readonly folder_badge_plus: "folder_badge_plus";
2221
- readonly folder_circle: "folder_circle";
2222
- readonly folder_circle_fill: "folder_circle_fill";
2223
- readonly folder_fill: "folder_fill";
2224
- readonly folder_fill_badge_minus: "folder_fill_badge_minus";
2225
- readonly folder_fill_badge_person_crop: "folder_fill_badge_person_crop";
2226
- readonly folder_fill_badge_plus: "folder_fill_badge_plus";
2227
- readonly folder_open: "folder_open";
2228
- readonly folder_solid: "folder_solid";
2229
- readonly forward: "forward";
2230
- readonly forward_end: "forward_end";
2231
- readonly forward_end_alt: "forward_end_alt";
2232
- readonly forward_end_alt_fill: "forward_end_alt_fill";
2233
- readonly forward_end_fill: "forward_end_fill";
2234
- readonly forward_fill: "forward_fill";
2235
- readonly fullscreen: "fullscreen";
2236
- readonly fullscreen_exit: "fullscreen_exit";
2237
- readonly function: "function";
2238
- readonly fx: "fx";
2239
- readonly game_controller: "game_controller";
2240
- readonly game_controller_solid: "game_controller_solid";
2241
- readonly gamecontroller: "gamecontroller";
2242
- readonly gamecontroller_alt_fill: "gamecontroller_alt_fill";
2243
- readonly gamecontroller_fill: "gamecontroller_fill";
2244
- readonly gauge: "gauge";
2245
- readonly gauge_badge_minus: "gauge_badge_minus";
2246
- readonly gauge_badge_plus: "gauge_badge_plus";
2247
- readonly gear: "gear";
2248
- readonly gear_alt: "gear_alt";
2249
- readonly gear_alt_fill: "gear_alt_fill";
2250
- readonly gear_big: "gear_big";
2251
- readonly gear_solid: "gear_solid";
2252
- readonly gift: "gift";
2253
- readonly gift_alt: "gift_alt";
2254
- readonly gift_alt_fill: "gift_alt_fill";
2255
- readonly gift_fill: "gift_fill";
2256
- readonly globe: "globe";
2257
- readonly gobackward: "gobackward";
2258
- readonly gobackward_10: "gobackward_10";
2259
- readonly gobackward_15: "gobackward_15";
2260
- readonly gobackward_30: "gobackward_30";
2261
- readonly gobackward_45: "gobackward_45";
2262
- readonly gobackward_60: "gobackward_60";
2263
- readonly gobackward_75: "gobackward_75";
2264
- readonly gobackward_90: "gobackward_90";
2265
- readonly gobackward_minus: "gobackward_minus";
2266
- readonly goforward: "goforward";
2267
- readonly goforward_10: "goforward_10";
2268
- readonly goforward_15: "goforward_15";
2269
- readonly goforward_30: "goforward_30";
2270
- readonly goforward_45: "goforward_45";
2271
- readonly goforward_60: "goforward_60";
2272
- readonly goforward_75: "goforward_75";
2273
- readonly goforward_90: "goforward_90";
2274
- readonly goforward_plus: "goforward_plus";
2275
- readonly graph_circle: "graph_circle";
2276
- readonly graph_circle_fill: "graph_circle_fill";
2277
- readonly graph_square: "graph_square";
2278
- readonly graph_square_fill: "graph_square_fill";
2279
- readonly greaterthan: "greaterthan";
2280
- readonly greaterthan_circle: "greaterthan_circle";
2281
- readonly greaterthan_circle_fill: "greaterthan_circle_fill";
2282
- readonly greaterthan_square: "greaterthan_square";
2283
- readonly greaterthan_square_fill: "greaterthan_square_fill";
2284
- readonly grid: "grid";
2285
- readonly grid_circle: "grid_circle";
2286
- readonly grid_circle_fill: "grid_circle_fill";
2287
- readonly group: "group";
2288
- readonly group_solid: "group_solid";
2289
- readonly guitars: "guitars";
2290
- readonly hammer: "hammer";
2291
- readonly hammer_fill: "hammer_fill";
2292
- readonly hand_draw: "hand_draw";
2293
- readonly hand_draw_fill: "hand_draw_fill";
2294
- readonly hand_point_left: "hand_point_left";
2295
- readonly hand_point_left_fill: "hand_point_left_fill";
2296
- readonly hand_point_right: "hand_point_right";
2297
- readonly hand_point_right_fill: "hand_point_right_fill";
2298
- readonly hand_raised: "hand_raised";
2299
- readonly hand_raised_fill: "hand_raised_fill";
2300
- readonly hand_raised_slash: "hand_raised_slash";
2301
- readonly hand_raised_slash_fill: "hand_raised_slash_fill";
2302
- readonly hand_thumbsdown: "hand_thumbsdown";
2303
- readonly hand_thumbsdown_fill: "hand_thumbsdown_fill";
2304
- readonly hand_thumbsup: "hand_thumbsup";
2305
- readonly hand_thumbsup_fill: "hand_thumbsup_fill";
2306
- readonly hare: "hare";
2307
- readonly hare_fill: "hare_fill";
2308
- readonly headphones: "headphones";
2309
- readonly heart: "heart";
2310
- readonly heart_circle: "heart_circle";
2311
- readonly heart_circle_fill: "heart_circle_fill";
2312
- readonly heart_fill: "heart_fill";
2313
- readonly heart_slash: "heart_slash";
2314
- readonly heart_slash_circle: "heart_slash_circle";
2315
- readonly heart_slash_circle_fill: "heart_slash_circle_fill";
2316
- readonly heart_slash_fill: "heart_slash_fill";
2317
- readonly heart_solid: "heart_solid";
2318
- readonly helm: "helm";
2319
- readonly hexagon: "hexagon";
2320
- readonly hexagon_fill: "hexagon_fill";
2321
- readonly hifispeaker: "hifispeaker";
2322
- readonly hifispeaker_fill: "hifispeaker_fill";
2323
- readonly home: "home";
2324
- readonly hourglass: "hourglass";
2325
- readonly hourglass_bottomhalf_fill: "hourglass_bottomhalf_fill";
2326
- readonly hourglass_tophalf_fill: "hourglass_tophalf_fill";
2327
- readonly house: "house";
2328
- readonly house_alt: "house_alt";
2329
- readonly house_alt_fill: "house_alt_fill";
2330
- readonly house_fill: "house_fill";
2331
- readonly hurricane: "hurricane";
2332
- readonly increase_indent: "increase_indent";
2333
- readonly increase_quotelevel: "increase_quotelevel";
2334
- readonly infinite: "infinite";
2335
- readonly info: "info";
2336
- readonly info_circle: "info_circle";
2337
- readonly info_circle_fill: "info_circle_fill";
2338
- readonly italic: "italic";
2339
- readonly keyboard: "keyboard";
2340
- readonly keyboard_chevron_compact_down: "keyboard_chevron_compact_down";
2341
- readonly lab_flask: "lab_flask";
2342
- readonly lab_flask_solid: "lab_flask_solid";
2343
- readonly largecircle_fill_circle: "largecircle_fill_circle";
2344
- readonly lasso: "lasso";
2345
- readonly layers: "layers";
2346
- readonly layers_alt: "layers_alt";
2347
- readonly layers_alt_fill: "layers_alt_fill";
2348
- readonly layers_fill: "layers_fill";
2349
- readonly leaf_arrow_circlepath: "leaf_arrow_circlepath";
2350
- readonly left_chevron: "left_chevron";
2351
- readonly lessthan: "lessthan";
2352
- readonly lessthan_circle: "lessthan_circle";
2353
- readonly lessthan_circle_fill: "lessthan_circle_fill";
2354
- readonly lessthan_square: "lessthan_square";
2355
- readonly lessthan_square_fill: "lessthan_square_fill";
2356
- readonly light_max: "light_max";
2357
- readonly light_min: "light_min";
2358
- readonly lightbulb: "lightbulb";
2359
- readonly lightbulb_fill: "lightbulb_fill";
2360
- readonly lightbulb_slash: "lightbulb_slash";
2361
- readonly lightbulb_slash_fill: "lightbulb_slash_fill";
2362
- readonly line_horizontal_3: "line_horizontal_3";
2363
- readonly line_horizontal_3_decrease: "line_horizontal_3_decrease";
2364
- readonly line_horizontal_3_decrease_circle: "line_horizontal_3_decrease_circle";
2365
- readonly line_horizontal_3_decrease_circle_fill: "line_horizontal_3_decrease_circle_fill";
2366
- readonly link: "link";
2367
- readonly link_circle: "link_circle";
2368
- readonly link_circle_fill: "link_circle_fill";
2369
- readonly list_bullet: "list_bullet";
2370
- readonly list_bullet_below_rectangle: "list_bullet_below_rectangle";
2371
- readonly list_bullet_indent: "list_bullet_indent";
2372
- readonly list_dash: "list_dash";
2373
- readonly list_number: "list_number";
2374
- readonly list_number_rtl: "list_number_rtl";
2375
- readonly location: "location";
2376
- readonly location_circle: "location_circle";
2377
- readonly location_circle_fill: "location_circle_fill";
2378
- readonly location_fill: "location_fill";
2379
- readonly location_north: "location_north";
2380
- readonly location_north_fill: "location_north_fill";
2381
- readonly location_north_line: "location_north_line";
2382
- readonly location_north_line_fill: "location_north_line_fill";
2383
- readonly location_slash: "location_slash";
2384
- readonly location_slash_fill: "location_slash_fill";
2385
- readonly location_solid: "location_solid";
2386
- readonly lock: "lock";
2387
- readonly lock_circle: "lock_circle";
2388
- readonly lock_circle_fill: "lock_circle_fill";
2389
- readonly lock_fill: "lock_fill";
2390
- readonly lock_open: "lock_open";
2391
- readonly lock_open_fill: "lock_open_fill";
2392
- readonly lock_rotation: "lock_rotation";
2393
- readonly lock_rotation_open: "lock_rotation_open";
2394
- readonly lock_shield: "lock_shield";
2395
- readonly lock_shield_fill: "lock_shield_fill";
2396
- readonly lock_slash: "lock_slash";
2397
- readonly lock_slash_fill: "lock_slash_fill";
2398
- readonly loop: "loop";
2399
- readonly loop_thick: "loop_thick";
2400
- readonly macwindow: "macwindow";
2401
- readonly mail: "mail";
2402
- readonly mail_solid: "mail_solid";
2403
- readonly map: "map";
2404
- readonly map_fill: "map_fill";
2405
- readonly map_pin: "map_pin";
2406
- readonly map_pin_ellipse: "map_pin_ellipse";
2407
- readonly map_pin_slash: "map_pin_slash";
2408
- readonly memories: "memories";
2409
- readonly memories_badge_minus: "memories_badge_minus";
2410
- readonly memories_badge_plus: "memories_badge_plus";
2411
- readonly metronome: "metronome";
2412
- readonly mic: "mic";
2413
- readonly mic_circle: "mic_circle";
2414
- readonly mic_circle_fill: "mic_circle_fill";
2415
- readonly mic_fill: "mic_fill";
2416
- readonly mic_off: "mic_off";
2417
- readonly mic_slash: "mic_slash";
2418
- readonly mic_slash_fill: "mic_slash_fill";
2419
- readonly mic_solid: "mic_solid";
2420
- readonly minus: "minus";
2421
- readonly minus_circle: "minus_circle";
2422
- readonly minus_circle_fill: "minus_circle_fill";
2423
- readonly minus_circled: "minus_circled";
2424
- readonly minus_rectangle: "minus_rectangle";
2425
- readonly minus_rectangle_fill: "minus_rectangle_fill";
2426
- readonly minus_slash_plus: "minus_slash_plus";
2427
- readonly minus_square: "minus_square";
2428
- readonly minus_square_fill: "minus_square_fill";
2429
- readonly money_dollar: "money_dollar";
2430
- readonly money_dollar_circle: "money_dollar_circle";
2431
- readonly money_dollar_circle_fill: "money_dollar_circle_fill";
2432
- readonly money_euro: "money_euro";
2433
- readonly money_euro_circle: "money_euro_circle";
2434
- readonly money_euro_circle_fill: "money_euro_circle_fill";
2435
- readonly money_pound: "money_pound";
2436
- readonly money_pound_circle: "money_pound_circle";
2437
- readonly money_pound_circle_fill: "money_pound_circle_fill";
2438
- readonly money_rubl: "money_rubl";
2439
- readonly money_rubl_circle: "money_rubl_circle";
2440
- readonly money_rubl_circle_fill: "money_rubl_circle_fill";
2441
- readonly money_yen: "money_yen";
2442
- readonly money_yen_circle: "money_yen_circle";
2443
- readonly money_yen_circle_fill: "money_yen_circle_fill";
2444
- readonly moon: "moon";
2445
- readonly moon_circle: "moon_circle";
2446
- readonly moon_circle_fill: "moon_circle_fill";
2447
- readonly moon_fill: "moon_fill";
2448
- readonly moon_stars: "moon_stars";
2449
- readonly moon_stars_fill: "moon_stars_fill";
2450
- readonly moon_zzz: "moon_zzz";
2451
- readonly moon_zzz_fill: "moon_zzz_fill";
2452
- readonly move: "move";
2453
- readonly multiply: "multiply";
2454
- readonly multiply_circle: "multiply_circle";
2455
- readonly multiply_circle_fill: "multiply_circle_fill";
2456
- readonly multiply_square: "multiply_square";
2457
- readonly multiply_square_fill: "multiply_square_fill";
2458
- readonly music_albums: "music_albums";
2459
- readonly music_albums_fill: "music_albums_fill";
2460
- readonly music_house: "music_house";
2461
- readonly music_house_fill: "music_house_fill";
2462
- readonly music_mic: "music_mic";
2463
- readonly music_note: "music_note";
2464
- readonly music_note_2: "music_note_2";
2465
- readonly music_note_list: "music_note_list";
2466
- readonly news: "news";
2467
- readonly news_solid: "news_solid";
2468
- readonly nosign: "nosign";
2469
- readonly number: "number";
2470
- readonly number_circle: "number_circle";
2471
- readonly number_circle_fill: "number_circle_fill";
2472
- readonly number_square: "number_square";
2473
- readonly number_square_fill: "number_square_fill";
2474
- readonly option: "option";
2475
- readonly padlock: "padlock";
2476
- readonly padlock_solid: "padlock_solid";
2477
- readonly paintbrush: "paintbrush";
2478
- readonly paintbrush_fill: "paintbrush_fill";
2479
- readonly pano: "pano";
2480
- readonly pano_fill: "pano_fill";
2481
- readonly paperclip: "paperclip";
2482
- readonly paperplane: "paperplane";
2483
- readonly paperplane_fill: "paperplane_fill";
2484
- readonly paragraph: "paragraph";
2485
- readonly pause: "pause";
2486
- readonly pause_circle: "pause_circle";
2487
- readonly pause_circle_fill: "pause_circle_fill";
2488
- readonly pause_fill: "pause_fill";
2489
- readonly pause_rectangle: "pause_rectangle";
2490
- readonly pause_rectangle_fill: "pause_rectangle_fill";
2491
- readonly pause_solid: "pause_solid";
2492
- readonly paw: "paw";
2493
- readonly paw_solid: "paw_solid";
2494
- readonly pen: "pen";
2495
- readonly pencil: "pencil";
2496
- readonly pencil_circle: "pencil_circle";
2497
- readonly pencil_circle_fill: "pencil_circle_fill";
2498
- readonly pencil_ellipsis_rectangle: "pencil_ellipsis_rectangle";
2499
- readonly pencil_outline: "pencil_outline";
2500
- readonly pencil_slash: "pencil_slash";
2501
- readonly percent: "percent";
2502
- readonly person: "person";
2503
- readonly person_2: "person_2";
2504
- readonly person_2_alt: "person_2_alt";
2505
- readonly person_2_fill: "person_2_fill";
2506
- readonly person_2_square_stack: "person_2_square_stack";
2507
- readonly person_2_square_stack_fill: "person_2_square_stack_fill";
2508
- readonly person_3: "person_3";
2509
- readonly person_3_fill: "person_3_fill";
2510
- readonly person_add: "person_add";
2511
- readonly person_add_solid: "person_add_solid";
2512
- readonly person_alt: "person_alt";
2513
- readonly person_alt_circle: "person_alt_circle";
2514
- readonly person_alt_circle_fill: "person_alt_circle_fill";
2515
- readonly person_badge_minus: "person_badge_minus";
2516
- readonly person_badge_minus_fill: "person_badge_minus_fill";
2517
- readonly person_badge_plus: "person_badge_plus";
2518
- readonly person_badge_plus_fill: "person_badge_plus_fill";
2519
- readonly person_circle: "person_circle";
2520
- readonly person_circle_fill: "person_circle_fill";
2521
- readonly person_crop_circle: "person_crop_circle";
2522
- readonly person_crop_circle_badge_checkmark: "person_crop_circle_badge_checkmark";
2523
- readonly person_crop_circle_badge_exclam: "person_crop_circle_badge_exclam";
2524
- readonly person_crop_circle_badge_minus: "person_crop_circle_badge_minus";
2525
- readonly person_crop_circle_badge_plus: "person_crop_circle_badge_plus";
2526
- readonly person_crop_circle_badge_xmark: "person_crop_circle_badge_xmark";
2527
- readonly person_crop_circle_fill: "person_crop_circle_fill";
2528
- readonly person_crop_circle_fill_badge_checkmark: "person_crop_circle_fill_badge_checkmark";
2529
- readonly person_crop_circle_fill_badge_exclam: "person_crop_circle_fill_badge_exclam";
2530
- readonly person_crop_circle_fill_badge_minus: "person_crop_circle_fill_badge_minus";
2531
- readonly person_crop_circle_fill_badge_plus: "person_crop_circle_fill_badge_plus";
2532
- readonly person_crop_circle_fill_badge_xmark: "person_crop_circle_fill_badge_xmark";
2533
- readonly person_crop_rectangle: "person_crop_rectangle";
2534
- readonly person_crop_rectangle_fill: "person_crop_rectangle_fill";
2535
- readonly person_crop_square: "person_crop_square";
2536
- readonly person_crop_square_fill: "person_crop_square_fill";
2537
- readonly person_fill: "person_fill";
2538
- readonly person_solid: "person_solid";
2539
- readonly personalhotspot: "personalhotspot";
2540
- readonly perspective: "perspective";
2541
- readonly phone: "phone";
2542
- readonly phone_arrow_down_left: "phone_arrow_down_left";
2543
- readonly phone_arrow_right: "phone_arrow_right";
2544
- readonly phone_arrow_up_right: "phone_arrow_up_right";
2545
- readonly phone_badge_plus: "phone_badge_plus";
2546
- readonly phone_circle: "phone_circle";
2547
- readonly phone_circle_fill: "phone_circle_fill";
2548
- readonly phone_down: "phone_down";
2549
- readonly phone_down_circle: "phone_down_circle";
2550
- readonly phone_down_circle_fill: "phone_down_circle_fill";
2551
- readonly phone_down_fill: "phone_down_fill";
2552
- readonly phone_fill: "phone_fill";
2553
- readonly phone_fill_arrow_down_left: "phone_fill_arrow_down_left";
2554
- readonly phone_fill_arrow_right: "phone_fill_arrow_right";
2555
- readonly phone_fill_arrow_up_right: "phone_fill_arrow_up_right";
2556
- readonly phone_fill_badge_plus: "phone_fill_badge_plus";
2557
- readonly phone_solid: "phone_solid";
2558
- readonly photo: "photo";
2559
- readonly photo_camera: "photo_camera";
2560
- readonly photo_camera_solid: "photo_camera_solid";
2561
- readonly photo_fill: "photo_fill";
2562
- readonly photo_fill_on_rectangle_fill: "photo_fill_on_rectangle_fill";
2563
- readonly photo_on_rectangle: "photo_on_rectangle";
2564
- readonly piano: "piano";
2565
- readonly pin: "pin";
2566
- readonly pin_fill: "pin_fill";
2567
- readonly pin_slash: "pin_slash";
2568
- readonly pin_slash_fill: "pin_slash_fill";
2569
- readonly placemark: "placemark";
2570
- readonly placemark_fill: "placemark_fill";
2571
- readonly play: "play";
2572
- readonly play_arrow: "play_arrow";
2573
- readonly play_arrow_solid: "play_arrow_solid";
2574
- readonly play_circle: "play_circle";
2575
- readonly play_circle_fill: "play_circle_fill";
2576
- readonly play_fill: "play_fill";
2577
- readonly play_rectangle: "play_rectangle";
2578
- readonly play_rectangle_fill: "play_rectangle_fill";
2579
- readonly playpause: "playpause";
2580
- readonly playpause_fill: "playpause_fill";
2581
- readonly plus: "plus";
2582
- readonly plus_app: "plus_app";
2583
- readonly plus_app_fill: "plus_app_fill";
2584
- readonly plus_bubble: "plus_bubble";
2585
- readonly plus_bubble_fill: "plus_bubble_fill";
2586
- readonly plus_circle: "plus_circle";
2587
- readonly plus_circle_fill: "plus_circle_fill";
2588
- readonly plus_circled: "plus_circled";
2589
- readonly plus_rectangle: "plus_rectangle";
2590
- readonly plus_rectangle_fill: "plus_rectangle_fill";
2591
- readonly plus_rectangle_fill_on_rectangle_fill: "plus_rectangle_fill_on_rectangle_fill";
2592
- readonly plus_rectangle_on_rectangle: "plus_rectangle_on_rectangle";
2593
- readonly plus_slash_minus: "plus_slash_minus";
2594
- readonly plus_square: "plus_square";
2595
- readonly plus_square_fill: "plus_square_fill";
2596
- readonly plus_square_fill_on_square_fill: "plus_square_fill_on_square_fill";
2597
- readonly plus_square_on_square: "plus_square_on_square";
2598
- readonly plusminus: "plusminus";
2599
- readonly plusminus_circle: "plusminus_circle";
2600
- readonly plusminus_circle_fill: "plusminus_circle_fill";
2601
- readonly power: "power";
2602
- readonly printer: "printer";
2603
- readonly printer_fill: "printer_fill";
2604
- readonly profile_circled: "profile_circled";
2605
- readonly projective: "projective";
2606
- readonly purchased: "purchased";
2607
- readonly purchased_circle: "purchased_circle";
2608
- readonly purchased_circle_fill: "purchased_circle_fill";
2609
- readonly qrcode: "qrcode";
2610
- readonly qrcode_viewfinder: "qrcode_viewfinder";
2611
- readonly question: "question";
2612
- readonly question_circle: "question_circle";
2613
- readonly question_circle_fill: "question_circle_fill";
2614
- readonly question_diamond: "question_diamond";
2615
- readonly question_diamond_fill: "question_diamond_fill";
2616
- readonly question_square: "question_square";
2617
- readonly question_square_fill: "question_square_fill";
2618
- readonly quote_bubble: "quote_bubble";
2619
- readonly quote_bubble_fill: "quote_bubble_fill";
2620
- readonly radiowaves_left: "radiowaves_left";
2621
- readonly radiowaves_right: "radiowaves_right";
2622
- readonly rays: "rays";
2623
- readonly recordingtape: "recordingtape";
2624
- readonly rectangle: "rectangle";
2625
- readonly rectangle_3_offgrid: "rectangle_3_offgrid";
2626
- readonly rectangle_3_offgrid_fill: "rectangle_3_offgrid_fill";
2627
- readonly rectangle_arrow_up_right_arrow_down_left: "rectangle_arrow_up_right_arrow_down_left";
2628
- readonly rectangle_arrow_up_right_arrow_down_left_slash: "rectangle_arrow_up_right_arrow_down_left_slash";
2629
- readonly rectangle_badge_checkmark: "rectangle_badge_checkmark";
2630
- readonly rectangle_badge_xmark: "rectangle_badge_xmark";
2631
- readonly rectangle_compress_vertical: "rectangle_compress_vertical";
2632
- readonly rectangle_dock: "rectangle_dock";
2633
- readonly rectangle_expand_vertical: "rectangle_expand_vertical";
2634
- readonly rectangle_fill: "rectangle_fill";
2635
- readonly rectangle_fill_badge_checkmark: "rectangle_fill_badge_checkmark";
2636
- readonly rectangle_fill_badge_xmark: "rectangle_fill_badge_xmark";
2637
- readonly rectangle_fill_on_rectangle_angled_fill: "rectangle_fill_on_rectangle_angled_fill";
2638
- readonly rectangle_fill_on_rectangle_fill: "rectangle_fill_on_rectangle_fill";
2639
- readonly rectangle_grid_1x2: "rectangle_grid_1x2";
2640
- readonly rectangle_grid_1x2_fill: "rectangle_grid_1x2_fill";
2641
- readonly rectangle_grid_2x2: "rectangle_grid_2x2";
2642
- readonly rectangle_grid_2x2_fill: "rectangle_grid_2x2_fill";
2643
- readonly rectangle_grid_3x2: "rectangle_grid_3x2";
2644
- readonly rectangle_grid_3x2_fill: "rectangle_grid_3x2_fill";
2645
- readonly rectangle_on_rectangle: "rectangle_on_rectangle";
2646
- readonly rectangle_on_rectangle_angled: "rectangle_on_rectangle_angled";
2647
- readonly rectangle_paperclip: "rectangle_paperclip";
2648
- readonly rectangle_split_3x1: "rectangle_split_3x1";
2649
- readonly rectangle_split_3x1_fill: "rectangle_split_3x1_fill";
2650
- readonly rectangle_split_3x3: "rectangle_split_3x3";
2651
- readonly rectangle_split_3x3_fill: "rectangle_split_3x3_fill";
2652
- readonly rectangle_stack: "rectangle_stack";
2653
- readonly rectangle_stack_badge_minus: "rectangle_stack_badge_minus";
2654
- readonly rectangle_stack_badge_person_crop: "rectangle_stack_badge_person_crop";
2655
- readonly rectangle_stack_badge_plus: "rectangle_stack_badge_plus";
2656
- readonly rectangle_stack_fill: "rectangle_stack_fill";
2657
- readonly rectangle_stack_fill_badge_minus: "rectangle_stack_fill_badge_minus";
2658
- readonly rectangle_stack_fill_badge_person_crop: "rectangle_stack_fill_badge_person_crop";
2659
- readonly rectangle_stack_fill_badge_plus: "rectangle_stack_fill_badge_plus";
2660
- readonly rectangle_stack_person_crop: "rectangle_stack_person_crop";
2661
- readonly rectangle_stack_person_crop_fill: "rectangle_stack_person_crop_fill";
2662
- readonly refresh: "refresh";
2663
- readonly refresh_bold: "refresh_bold";
2664
- readonly refresh_circled: "refresh_circled";
2665
- readonly refresh_circled_solid: "refresh_circled_solid";
2666
- readonly refresh_thick: "refresh_thick";
2667
- readonly refresh_thin: "refresh_thin";
2668
- readonly repeat: "repeat";
2669
- readonly repeat_1: "repeat_1";
2670
- readonly reply: "reply";
2671
- readonly reply_all: "reply_all";
2672
- readonly reply_thick_solid: "reply_thick_solid";
2673
- readonly resize: "resize";
2674
- readonly resize_h: "resize_h";
2675
- readonly resize_v: "resize_v";
2676
- readonly restart: "restart";
2677
- readonly return_icon: "return_icon";
2678
- readonly rhombus: "rhombus";
2679
- readonly rhombus_fill: "rhombus_fill";
2680
- readonly right_chevron: "right_chevron";
2681
- readonly rocket: "rocket";
2682
- readonly rocket_fill: "rocket_fill";
2683
- readonly rosette: "rosette";
2684
- readonly rotate_left: "rotate_left";
2685
- readonly rotate_left_fill: "rotate_left_fill";
2686
- readonly rotate_right: "rotate_right";
2687
- readonly rotate_right_fill: "rotate_right_fill";
2688
- readonly scissors: "scissors";
2689
- readonly scissors_alt: "scissors_alt";
2690
- readonly scope: "scope";
2691
- readonly scribble: "scribble";
2692
- readonly search: "search";
2693
- readonly search_circle: "search_circle";
2694
- readonly search_circle_fill: "search_circle_fill";
2695
- readonly selection_pin_in_out: "selection_pin_in_out";
2696
- readonly settings: "settings";
2697
- readonly settings_solid: "settings_solid";
2698
- readonly share: "share";
2699
- readonly share_solid: "share_solid";
2700
- readonly share_up: "share_up";
2701
- readonly shield: "shield";
2702
- readonly shield_fill: "shield_fill";
2703
- readonly shield_lefthalf_fill: "shield_lefthalf_fill";
2704
- readonly shield_slash: "shield_slash";
2705
- readonly shield_slash_fill: "shield_slash_fill";
2706
- readonly shift: "shift";
2707
- readonly shift_fill: "shift_fill";
2708
- readonly shopping_cart: "shopping_cart";
2709
- readonly shuffle: "shuffle";
2710
- readonly shuffle_medium: "shuffle_medium";
2711
- readonly shuffle_thick: "shuffle_thick";
2712
- readonly sidebar_left: "sidebar_left";
2713
- readonly sidebar_right: "sidebar_right";
2714
- readonly signature: "signature";
2715
- readonly skew: "skew";
2716
- readonly slash_circle: "slash_circle";
2717
- readonly slash_circle_fill: "slash_circle_fill";
2718
- readonly slider_horizontal_3: "slider_horizontal_3";
2719
- readonly slider_horizontal_below_rectangle: "slider_horizontal_below_rectangle";
2720
- readonly slowmo: "slowmo";
2721
- readonly smallcircle_circle: "smallcircle_circle";
2722
- readonly smallcircle_circle_fill: "smallcircle_circle_fill";
2723
- readonly smallcircle_fill_circle: "smallcircle_fill_circle";
2724
- readonly smallcircle_fill_circle_fill: "smallcircle_fill_circle_fill";
2725
- readonly smiley: "smiley";
2726
- readonly smiley_fill: "smiley_fill";
2727
- readonly smoke: "smoke";
2728
- readonly smoke_fill: "smoke_fill";
2729
- readonly snow: "snow";
2730
- readonly sort_down: "sort_down";
2731
- readonly sort_down_circle: "sort_down_circle";
2732
- readonly sort_down_circle_fill: "sort_down_circle_fill";
2733
- readonly sort_up: "sort_up";
2734
- readonly sort_up_circle: "sort_up_circle";
2735
- readonly sort_up_circle_fill: "sort_up_circle_fill";
2736
- readonly sparkles: "sparkles";
2737
- readonly speaker: "speaker";
2738
- readonly speaker_1: "speaker_1";
2739
- readonly speaker_1_fill: "speaker_1_fill";
2740
- readonly speaker_2: "speaker_2";
2741
- readonly speaker_2_fill: "speaker_2_fill";
2742
- readonly speaker_3: "speaker_3";
2743
- readonly speaker_3_fill: "speaker_3_fill";
2744
- readonly speaker_fill: "speaker_fill";
2745
- readonly speaker_slash: "speaker_slash";
2746
- readonly speaker_slash_fill: "speaker_slash_fill";
2747
- readonly speaker_slash_fill_rtl: "speaker_slash_fill_rtl";
2748
- readonly speaker_slash_rtl: "speaker_slash_rtl";
2749
- readonly speaker_zzz: "speaker_zzz";
2750
- readonly speaker_zzz_fill: "speaker_zzz_fill";
2751
- readonly speaker_zzz_fill_rtl: "speaker_zzz_fill_rtl";
2752
- readonly speaker_zzz_rtl: "speaker_zzz_rtl";
2753
- readonly speedometer: "speedometer";
2754
- readonly sportscourt: "sportscourt";
2755
- readonly sportscourt_fill: "sportscourt_fill";
2756
- readonly square: "square";
2757
- readonly square_arrow_down: "square_arrow_down";
2758
- readonly square_arrow_down_fill: "square_arrow_down_fill";
2759
- readonly square_arrow_down_on_square: "square_arrow_down_on_square";
2760
- readonly square_arrow_down_on_square_fill: "square_arrow_down_on_square_fill";
2761
- readonly square_arrow_left: "square_arrow_left";
2762
- readonly square_arrow_left_fill: "square_arrow_left_fill";
2763
- readonly square_arrow_right: "square_arrow_right";
2764
- readonly square_arrow_right_fill: "square_arrow_right_fill";
2765
- readonly square_arrow_up: "square_arrow_up";
2766
- readonly square_arrow_up_fill: "square_arrow_up_fill";
2767
- readonly square_arrow_up_on_square: "square_arrow_up_on_square";
2768
- readonly square_arrow_up_on_square_fill: "square_arrow_up_on_square_fill";
2769
- readonly square_favorites: "square_favorites";
2770
- readonly square_favorites_alt: "square_favorites_alt";
2771
- readonly square_favorites_alt_fill: "square_favorites_alt_fill";
2772
- readonly square_favorites_fill: "square_favorites_fill";
2773
- readonly square_fill: "square_fill";
2774
- readonly square_fill_line_vertical_square: "square_fill_line_vertical_square";
2775
- readonly square_fill_line_vertical_square_fill: "square_fill_line_vertical_square_fill";
2776
- readonly square_fill_on_circle_fill: "square_fill_on_circle_fill";
2777
- readonly square_fill_on_square_fill: "square_fill_on_square_fill";
2778
- readonly square_grid_2x2: "square_grid_2x2";
2779
- readonly square_grid_2x2_fill: "square_grid_2x2_fill";
2780
- readonly square_grid_3x2: "square_grid_3x2";
2781
- readonly square_grid_3x2_fill: "square_grid_3x2_fill";
2782
- readonly square_grid_4x3_fill: "square_grid_4x3_fill";
2783
- readonly square_lefthalf_fill: "square_lefthalf_fill";
2784
- readonly square_line_vertical_square: "square_line_vertical_square";
2785
- readonly square_line_vertical_square_fill: "square_line_vertical_square_fill";
2786
- readonly square_list: "square_list";
2787
- readonly square_list_fill: "square_list_fill";
2788
- readonly square_on_circle: "square_on_circle";
2789
- readonly square_on_square: "square_on_square";
2790
- readonly square_pencil: "square_pencil";
2791
- readonly square_pencil_fill: "square_pencil_fill";
2792
- readonly square_righthalf_fill: "square_righthalf_fill";
2793
- readonly square_split_1x2: "square_split_1x2";
2794
- readonly square_split_1x2_fill: "square_split_1x2_fill";
2795
- readonly square_split_2x1: "square_split_2x1";
2796
- readonly square_split_2x1_fill: "square_split_2x1_fill";
2797
- readonly square_split_2x2: "square_split_2x2";
2798
- readonly square_split_2x2_fill: "square_split_2x2_fill";
2799
- readonly square_stack: "square_stack";
2800
- readonly square_stack_3d_down_dottedline: "square_stack_3d_down_dottedline";
2801
- readonly square_stack_3d_down_right: "square_stack_3d_down_right";
2802
- readonly square_stack_3d_down_right_fill: "square_stack_3d_down_right_fill";
2803
- readonly square_stack_3d_up: "square_stack_3d_up";
2804
- readonly square_stack_3d_up_fill: "square_stack_3d_up_fill";
2805
- readonly square_stack_3d_up_slash: "square_stack_3d_up_slash";
2806
- readonly square_stack_3d_up_slash_fill: "square_stack_3d_up_slash_fill";
2807
- readonly square_stack_fill: "square_stack_fill";
2808
- readonly squares_below_rectangle: "squares_below_rectangle";
2809
- readonly star: "star";
2810
- readonly star_circle: "star_circle";
2811
- readonly star_circle_fill: "star_circle_fill";
2812
- readonly star_fill: "star_fill";
2813
- readonly star_lefthalf_fill: "star_lefthalf_fill";
2814
- readonly star_slash: "star_slash";
2815
- readonly star_slash_fill: "star_slash_fill";
2816
- readonly staroflife: "staroflife";
2817
- readonly staroflife_fill: "staroflife_fill";
2818
- readonly stop: "stop";
2819
- readonly stop_circle: "stop_circle";
2820
- readonly stop_circle_fill: "stop_circle_fill";
2821
- readonly stop_fill: "stop_fill";
2822
- readonly stopwatch: "stopwatch";
2823
- readonly stopwatch_fill: "stopwatch_fill";
2824
- readonly strikethrough: "strikethrough";
2825
- readonly suit_club: "suit_club";
2826
- readonly suit_club_fill: "suit_club_fill";
2827
- readonly suit_diamond: "suit_diamond";
2828
- readonly suit_diamond_fill: "suit_diamond_fill";
2829
- readonly suit_heart: "suit_heart";
2830
- readonly suit_heart_fill: "suit_heart_fill";
2831
- readonly suit_spade: "suit_spade";
2832
- readonly suit_spade_fill: "suit_spade_fill";
2833
- readonly sum: "sum";
2834
- readonly sun_dust: "sun_dust";
2835
- readonly sun_dust_fill: "sun_dust_fill";
2836
- readonly sun_haze: "sun_haze";
2837
- readonly sun_haze_fill: "sun_haze_fill";
2838
- readonly sun_max: "sun_max";
2839
- readonly sun_max_fill: "sun_max_fill";
2840
- readonly sun_min: "sun_min";
2841
- readonly sun_min_fill: "sun_min_fill";
2842
- readonly sunrise: "sunrise";
2843
- readonly sunrise_fill: "sunrise_fill";
2844
- readonly sunset: "sunset";
2845
- readonly sunset_fill: "sunset_fill";
2846
- readonly switch_camera: "switch_camera";
2847
- readonly switch_camera_solid: "switch_camera_solid";
2848
- readonly t_bubble: "t_bubble";
2849
- readonly t_bubble_fill: "t_bubble_fill";
2850
- readonly table: "table";
2851
- readonly table_badge_more: "table_badge_more";
2852
- readonly table_badge_more_fill: "table_badge_more_fill";
2853
- readonly table_fill: "table_fill";
2854
- readonly tag: "tag";
2855
- readonly tag_circle: "tag_circle";
2856
- readonly tag_circle_fill: "tag_circle_fill";
2857
- readonly tag_fill: "tag_fill";
2858
- readonly tag_solid: "tag_solid";
2859
- readonly tags: "tags";
2860
- readonly tags_solid: "tags_solid";
2861
- readonly text_aligncenter: "text_aligncenter";
2862
- readonly text_alignleft: "text_alignleft";
2863
- readonly text_alignright: "text_alignright";
2864
- readonly text_append: "text_append";
2865
- readonly text_badge_checkmark: "text_badge_checkmark";
2866
- readonly text_badge_minus: "text_badge_minus";
2867
- readonly text_badge_plus: "text_badge_plus";
2868
- readonly text_badge_star: "text_badge_star";
2869
- readonly text_badge_xmark: "text_badge_xmark";
2870
- readonly text_bubble: "text_bubble";
2871
- readonly text_bubble_fill: "text_bubble_fill";
2872
- readonly text_cursor: "text_cursor";
2873
- readonly text_insert: "text_insert";
2874
- readonly text_justify: "text_justify";
2875
- readonly text_justifyleft: "text_justifyleft";
2876
- readonly text_justifyright: "text_justifyright";
2877
- readonly text_quote: "text_quote";
2878
- readonly textbox: "textbox";
2879
- readonly textformat: "textformat";
2880
- readonly textformat_123: "textformat_123";
2881
- readonly textformat_abc: "textformat_abc";
2882
- readonly textformat_abc_dottedunderline: "textformat_abc_dottedunderline";
2883
- readonly textformat_alt: "textformat_alt";
2884
- readonly textformat_size: "textformat_size";
2885
- readonly textformat_subscript: "textformat_subscript";
2886
- readonly textformat_superscript: "textformat_superscript";
2887
- readonly thermometer: "thermometer";
2888
- readonly thermometer_snowflake: "thermometer_snowflake";
2889
- readonly thermometer_sun: "thermometer_sun";
2890
- readonly ticket: "ticket";
2891
- readonly ticket_fill: "ticket_fill";
2892
- readonly tickets: "tickets";
2893
- readonly tickets_fill: "tickets_fill";
2894
- readonly time: "time";
2895
- readonly time_solid: "time_solid";
2896
- readonly timelapse: "timelapse";
2897
- readonly timer: "timer";
2898
- readonly timer_fill: "timer_fill";
2899
- readonly today: "today";
2900
- readonly today_fill: "today_fill";
2901
- readonly tornado: "tornado";
2902
- readonly tortoise: "tortoise";
2903
- readonly tortoise_fill: "tortoise_fill";
2904
- readonly train_style_one: "train_style_one";
2905
- readonly train_style_two: "train_style_two";
2906
- readonly tram_fill: "tram_fill";
2907
- readonly trash: "trash";
2908
- readonly trash_circle: "trash_circle";
2909
- readonly trash_circle_fill: "trash_circle_fill";
2910
- readonly trash_fill: "trash_fill";
2911
- readonly trash_slash: "trash_slash";
2912
- readonly trash_slash_fill: "trash_slash_fill";
2913
- readonly tray: "tray";
2914
- readonly tray_2: "tray_2";
2915
- readonly tray_2_fill: "tray_2_fill";
2916
- readonly tray_arrow_down: "tray_arrow_down";
2917
- readonly tray_arrow_down_fill: "tray_arrow_down_fill";
2918
- readonly tray_arrow_up: "tray_arrow_up";
2919
- readonly tray_arrow_up_fill: "tray_arrow_up_fill";
2920
- readonly tray_fill: "tray_fill";
2921
- readonly tray_full: "tray_full";
2922
- readonly tray_full_fill: "tray_full_fill";
2923
- readonly tree: "tree";
2924
- readonly triangle: "triangle";
2925
- readonly triangle_fill: "triangle_fill";
2926
- readonly triangle_lefthalf_fill: "triangle_lefthalf_fill";
2927
- readonly triangle_righthalf_fill: "triangle_righthalf_fill";
2928
- readonly tropicalstorm: "tropicalstorm";
2929
- readonly tuningfork: "tuningfork";
2930
- readonly tv: "tv";
2931
- readonly tv_circle: "tv_circle";
2932
- readonly tv_circle_fill: "tv_circle_fill";
2933
- readonly tv_fill: "tv_fill";
2934
- readonly tv_music_note: "tv_music_note";
2935
- readonly tv_music_note_fill: "tv_music_note_fill";
2936
- readonly uiwindow_split_2x1: "uiwindow_split_2x1";
2937
- readonly umbrella: "umbrella";
2938
- readonly umbrella_fill: "umbrella_fill";
2939
- readonly underline: "underline";
2940
- readonly up_arrow: "up_arrow";
2941
- readonly upload_circle: "upload_circle";
2942
- readonly upload_circle_fill: "upload_circle_fill";
2943
- readonly video_camera: "video_camera";
2944
- readonly video_camera_solid: "video_camera_solid";
2945
- readonly videocam: "videocam";
2946
- readonly videocam_circle: "videocam_circle";
2947
- readonly videocam_circle_fill: "videocam_circle_fill";
2948
- readonly videocam_fill: "videocam_fill";
2949
- readonly view_2d: "view_2d";
2950
- readonly view_3d: "view_3d";
2951
- readonly viewfinder: "viewfinder";
2952
- readonly viewfinder_circle: "viewfinder_circle";
2953
- readonly viewfinder_circle_fill: "viewfinder_circle_fill";
2954
- readonly volume_down: "volume_down";
2955
- readonly volume_mute: "volume_mute";
2956
- readonly volume_off: "volume_off";
2957
- readonly volume_up: "volume_up";
2958
- readonly wand_rays: "wand_rays";
2959
- readonly wand_rays_inverse: "wand_rays_inverse";
2960
- readonly wand_stars: "wand_stars";
2961
- readonly wand_stars_inverse: "wand_stars_inverse";
2962
- readonly waveform: "waveform";
2963
- readonly waveform_circle: "waveform_circle";
2964
- readonly waveform_circle_fill: "waveform_circle_fill";
2965
- readonly waveform_path: "waveform_path";
2966
- readonly waveform_path_badge_minus: "waveform_path_badge_minus";
2967
- readonly waveform_path_badge_plus: "waveform_path_badge_plus";
2968
- readonly waveform_path_ecg: "waveform_path_ecg";
2969
- readonly wifi: "wifi";
2970
- readonly wifi_exclamationmark: "wifi_exclamationmark";
2971
- readonly wifi_slash: "wifi_slash";
2972
- readonly wind: "wind";
2973
- readonly wind_snow: "wind_snow";
2974
- readonly wrench: "wrench";
2975
- readonly wrench_fill: "wrench_fill";
2976
- readonly xmark: "xmark";
2977
- readonly xmark_circle: "xmark_circle";
2978
- readonly xmark_circle_fill: "xmark_circle_fill";
2979
- readonly xmark_octagon: "xmark_octagon";
2980
- readonly xmark_octagon_fill: "xmark_octagon_fill";
2981
- readonly xmark_rectangle: "xmark_rectangle";
2982
- readonly xmark_rectangle_fill: "xmark_rectangle_fill";
2983
- readonly xmark_seal: "xmark_seal";
2984
- readonly xmark_seal_fill: "xmark_seal_fill";
2985
- readonly xmark_shield: "xmark_shield";
2986
- readonly xmark_shield_fill: "xmark_shield_fill";
2987
- readonly xmark_square: "xmark_square";
2988
- readonly xmark_square_fill: "xmark_square_fill";
2989
- readonly zoom_in: "zoom_in";
2990
- readonly zoom_out: "zoom_out";
2991
- readonly zzz: "zzz";
2992
- };
2993
- declare enum CupertinoColors {
2994
- activeBlue = "rgba(0, 122, 255, 1)",
2995
- activeGreen = "rgba(52, 199, 89, 1)",
2996
- activeOrange = "rgba(255, 149, 0, 1)",
2997
- black = "rgba(0, 0, 0, 1)",
2998
- darkBackgroundGray = "rgba(23, 23, 23, 1)",
2999
- destructiveRed = "rgba(255, 59, 48, 1)",
3000
- extraLightBackgroundGray = "rgba(239, 239, 244, 1)",
3001
- inactiveGray = "rgba(153, 153, 153, 1)",
3002
- label = "rgba(0, 0, 0, 1)",
3003
- lightBackgroundGray = "rgba(229, 229, 234, 1)",
3004
- link = "rgba(0, 122, 255, 1)",
3005
- opaqueSeparator = "rgba(198, 198, 200, 1)",
3006
- placeholderText = "rgba(60, 60, 67, 0.298)",
3007
- quaternaryLabel = "rgba(60, 60, 67, 0.176)",
3008
- quaternarySystemFill = "rgba(116, 116, 128, 0.078)",
3009
- secondaryLabel = "rgba(60, 60, 67, 0.6)",
3010
- secondarySystemBackground = "rgba(242, 242, 247, 1)",
3011
- secondarySystemFill = "rgba(120, 120, 128, 0.157)",
3012
- secondarySystemGroupedBackground = "rgba(255, 255, 255, 1)",
3013
- separator = "rgba(60, 60, 67, 0.286)",
3014
- systemBackground = "rgba(255, 255, 255, 1)",
3015
- systemBlue = "rgba(0, 122, 255, 1)",
3016
- systemBrown = "rgba(162, 132, 94, 1)",
3017
- systemCyan = "rgba(50, 173, 230, 1)",
3018
- systemFill = "rgba(120, 120, 128, 0.2)",
3019
- systemGreen = "rgba(52, 199, 89, 1)",
3020
- systemGrey = "rgba(142, 142, 147, 1)",
3021
- systemGrey2 = "rgba(174, 174, 178, 1)",
3022
- systemGrey3 = "rgba(199, 199, 204, 1)",
3023
- systemGrey4 = "rgba(209, 209, 214, 1)",
3024
- systemGrey5 = "rgba(229, 229, 234, 1)",
3025
- systemGrey6 = "rgba(242, 242, 247, 1)",
3026
- systemGroupedBackground = "rgba(242, 242, 247, 1)",
3027
- systemIndigo = "rgba(88, 86, 214, 1)",
3028
- systemMint = "rgba(0, 199, 190, 1)",
3029
- systemOrange = "rgba(255, 149, 0, 1)",
3030
- systemPink = "rgba(255, 45, 85, 1)",
3031
- systemPurple = "rgba(175, 82, 222, 1)",
3032
- systemRed = "rgba(255, 59, 48, 1)",
3033
- systemTeal = "rgba(90, 200, 250, 1)",
3034
- systemYellow = "rgba(255, 204, 0, 1)",
3035
- tertiaryLabel = "rgba(60, 60, 67, 0.298)",
3036
- tertiarySystemBackground = "rgba(255, 255, 255, 1)",
3037
- tertiarySystemFill = "rgba(118, 118, 128, 0.118)",
3038
- tertiarySystemGroupedBackground = "rgba(242, 242, 247, 1)",
3039
- transparent = "rgba(0, 0, 0, 0)",
3040
- white = "rgba(255, 255, 255, 1)"
3041
- }
3042
-
3043
- interface FlutterCupertinoIconProps {
3044
- /**
3045
- * type property
3046
- * @default undefined
3047
- */
3048
- type?: typeof CupertinoIcons;
3049
- /**
3050
- * label property
3051
- * @default undefined
3052
- */
3053
- label?: string;
3246
+ } & React.RefAttributes<FlutterCupertinoInputPrefixElement>>;
3247
+ interface FlutterCupertinoInputSuffixProps {
3054
3248
  /**
3055
3249
  * HTML id attribute
3056
3250
  */
@@ -3068,26 +3262,26 @@ interface FlutterCupertinoIconProps {
3068
3262
  */
3069
3263
  className?: string;
3070
3264
  }
3071
- interface FlutterCupertinoIconElement extends WebFElementWithMethods<{}> {
3265
+ interface FlutterCupertinoInputSuffixElement extends WebFElementWithMethods<{}> {
3072
3266
  }
3073
3267
  /**
3074
- * FlutterCupertinoIcon - WebF FlutterCupertinoIcon component
3268
+ * FlutterCupertinoInputSuffix - WebF FlutterCupertinoInputSuffix component
3075
3269
  *
3076
3270
  * @example
3077
3271
  * ```tsx
3078
3272
  *
3079
- * <FlutterCupertinoIcon
3273
+ * <FlutterCupertinoInputSuffix
3080
3274
  * // Add props here
3081
3275
  * >
3082
3276
  * Content
3083
- * </FlutterCupertinoIcon>
3277
+ * </FlutterCupertinoInputSuffix>
3084
3278
  * ```
3085
3279
  */
3086
- declare const FlutterCupertinoIcon: React.ForwardRefExoticComponent<FlutterCupertinoIconProps & {
3280
+ declare const FlutterCupertinoInputSuffix: React.ForwardRefExoticComponent<FlutterCupertinoInputSuffixProps & {
3087
3281
  className?: string;
3088
3282
  style?: React.CSSProperties;
3089
3283
  children?: React.ReactNode;
3090
- } & React.RefAttributes<FlutterCupertinoIconElement>>;
3284
+ } & React.RefAttributes<FlutterCupertinoInputSuffixElement>>;
3091
3285
 
3092
3286
  interface FlutterCupertinoFormSectionProps {
3093
3287
  /**
@@ -3621,196 +3815,6 @@ declare const FlutterCupertinoCheckbox: React.ForwardRefExoticComponent<FlutterC
3621
3815
  children?: React.ReactNode;
3622
3816
  } & React.RefAttributes<FlutterCupertinoCheckboxElement>>;
3623
3817
 
3624
- interface FlutterCupertinoButtonProps {
3625
- /**
3626
- * Visual variant of the button.
3627
- * - 'plain': Standard CupertinoButton
3628
- * - 'filled': CupertinoButton.filled (ignores custom background color)
3629
- * - 'tinted': CupertinoButton.tinted
3630
- * Default: 'plain'
3631
- */
3632
- variant?: string;
3633
- /**
3634
- * Size style used to derive default padding and min height.
3635
- * - 'small': minSize ~32, compact padding
3636
- * - 'large': minSize ~44, comfortable padding
3637
- * Default: 'small'
3638
- */
3639
- size?: string;
3640
- /**
3641
- * Disable interactions. When true, onPressed is null and the button uses a disabled color.
3642
- */
3643
- disabled?: boolean;
3644
- /**
3645
- * Opacity applied while pressed (0.0–1.0). Default: 0.4
3646
- * Note: Accepts numeric value as a string.
3647
- */
3648
- pressedOpacity?: string;
3649
- /**
3650
- * Hex color used when disabled. Accepts '#RRGGBB' or '#AARRGGBB'.
3651
- * Overrides the internally computed disabled color.
3652
- */
3653
- disabledColor?: string;
3654
- /**
3655
- * Fired when the button is pressed (not emitted when disabled).
3656
- */
3657
- onClick?: (event: Event) => void;
3658
- /**
3659
- * HTML id attribute
3660
- */
3661
- id?: string;
3662
- /**
3663
- * Additional CSS styles
3664
- */
3665
- style?: React.CSSProperties;
3666
- /**
3667
- * Children elements
3668
- */
3669
- children?: React.ReactNode;
3670
- /**
3671
- * Additional CSS class names
3672
- */
3673
- className?: string;
3674
- }
3675
- interface FlutterCupertinoButtonElement extends WebFElementWithMethods<{}> {
3676
- }
3677
- /**
3678
- * Properties for <flutter-cupertino-button>
3679
- *
3680
- * @example
3681
- * ```tsx
3682
- *
3683
- * <FlutterCupertinoButton
3684
- * // Add props here
3685
- * >
3686
- * Content
3687
- * </FlutterCupertinoButton>
3688
- * ```
3689
- */
3690
- declare const FlutterCupertinoButton: React.ForwardRefExoticComponent<FlutterCupertinoButtonProps & {
3691
- className?: string;
3692
- style?: React.CSSProperties;
3693
- children?: React.ReactNode;
3694
- } & React.RefAttributes<FlutterCupertinoButtonElement>>;
3695
-
3696
- interface FlutterCupertinoAlertOptions {
3697
- title?: string;
3698
- message?: string;
3699
- }
3700
- interface FlutterCupertinoAlertProps {
3701
- /**
3702
- * title property
3703
- * @default undefined
3704
- */
3705
- title?: string;
3706
- /**
3707
- * message property
3708
- * @default undefined
3709
- */
3710
- message?: string;
3711
- /**
3712
- * cancelText property
3713
- * @default undefined
3714
- */
3715
- cancelText?: string;
3716
- /**
3717
- * cancelDestructive property
3718
- * @default undefined
3719
- */
3720
- cancelDestructive?: string;
3721
- /**
3722
- * cancelDefault property
3723
- * @default undefined
3724
- */
3725
- cancelDefault?: string;
3726
- /**
3727
- * cancelTextStyle property
3728
- * @default undefined
3729
- */
3730
- cancelTextStyle?: string;
3731
- /**
3732
- * confirmText property
3733
- * @default undefined
3734
- */
3735
- confirmText?: string;
3736
- /**
3737
- * confirmDefault property
3738
- * @default undefined
3739
- */
3740
- confirmDefault?: string;
3741
- /**
3742
- * confirmDestructive property
3743
- * @default undefined
3744
- */
3745
- confirmDestructive?: string;
3746
- /**
3747
- * confirmTextStyle property
3748
- * @default undefined
3749
- */
3750
- confirmTextStyle?: string;
3751
- /**
3752
- * cancel event handler
3753
- */
3754
- onCancel?: (event: CustomEvent) => void;
3755
- /**
3756
- * confirm event handler
3757
- */
3758
- onConfirm?: (event: CustomEvent) => void;
3759
- /**
3760
- * HTML id attribute
3761
- */
3762
- id?: string;
3763
- /**
3764
- * Additional CSS styles
3765
- */
3766
- style?: React.CSSProperties;
3767
- /**
3768
- * Children elements
3769
- */
3770
- children?: React.ReactNode;
3771
- /**
3772
- * Additional CSS class names
3773
- */
3774
- className?: string;
3775
- }
3776
- /**
3777
- * Element interface with methods accessible via ref
3778
- * @example
3779
- * ```tsx
3780
- * const ref = useRef<FlutterCupertinoAlertElement>(null);
3781
- * // Call methods on the element
3782
- * ref.current?.finishRefresh('success');
3783
- * ```
3784
- */
3785
- interface FlutterCupertinoAlertElement extends WebFElementWithMethods<{
3786
- show(options: FlutterCupertinoAlertOptions): void;
3787
- hide(): void;
3788
- }> {
3789
- }
3790
- /**
3791
- * FlutterCupertinoAlert - WebF FlutterCupertinoAlert component
3792
- *
3793
- * @example
3794
- * ```tsx
3795
- * const ref = useRef<FlutterCupertinoAlertElement>(null);
3796
- *
3797
- * <FlutterCupertinoAlert
3798
- * ref={ref}
3799
- * // Add props here
3800
- * >
3801
- * Content
3802
- * </FlutterCupertinoAlert>
3803
- *
3804
- * // Call methods on the element
3805
- * ref.current?.finishRefresh('success');
3806
- * ```
3807
- */
3808
- declare const FlutterCupertinoAlert: React.ForwardRefExoticComponent<FlutterCupertinoAlertProps & {
3809
- className?: string;
3810
- style?: React.CSSProperties;
3811
- children?: React.ReactNode;
3812
- } & React.RefAttributes<FlutterCupertinoAlertElement>>;
3813
-
3814
3818
  interface FlutterCupertinoActionSheetAction {
3815
3819
  text: string;
3816
3820
  isDefault?: boolean;