@swc-react/icons 0.31.0 → 0.31.1-react.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/next.d.ts ADDED
@@ -0,0 +1,1165 @@
1
+ /// <reference types="react" />
2
+ export declare const IconsLarge: import("react").ComponentType<Partial<{
3
+ dir?: string | undefined;
4
+ slot?: string | undefined;
5
+ role?: import("react").AriaRole | undefined;
6
+ 'aria-label'?: string | undefined;
7
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
8
+ style?: import("react").CSSProperties | undefined;
9
+ title?: string | undefined;
10
+ defaultChecked?: boolean | undefined;
11
+ defaultValue?: string | number | readonly string[] | undefined;
12
+ suppressContentEditableWarning?: boolean | undefined;
13
+ suppressHydrationWarning?: boolean | undefined;
14
+ accessKey?: string | undefined;
15
+ className?: string | undefined;
16
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
17
+ contextMenu?: string | undefined;
18
+ draggable?: (boolean | "true" | "false") | undefined;
19
+ hidden?: boolean | undefined;
20
+ id?: string | undefined;
21
+ lang?: string | undefined;
22
+ nonce?: string | undefined;
23
+ placeholder?: string | undefined;
24
+ spellCheck?: (boolean | "true" | "false") | undefined;
25
+ tabIndex?: number | undefined;
26
+ translate?: "yes" | "no" | undefined;
27
+ radioGroup?: string | undefined;
28
+ about?: string | undefined;
29
+ datatype?: string | undefined;
30
+ inlist?: any;
31
+ prefix?: string | undefined;
32
+ property?: string | undefined;
33
+ resource?: string | undefined;
34
+ typeof?: string | undefined;
35
+ vocab?: string | undefined;
36
+ autoCapitalize?: string | undefined;
37
+ autoCorrect?: string | undefined;
38
+ autoSave?: string | undefined;
39
+ color?: string | undefined;
40
+ itemProp?: string | undefined;
41
+ itemScope?: boolean | undefined;
42
+ itemType?: string | undefined;
43
+ itemID?: string | undefined;
44
+ itemRef?: string | undefined;
45
+ results?: number | undefined;
46
+ security?: string | undefined;
47
+ unselectable?: "on" | "off" | undefined;
48
+ inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
49
+ is?: string | undefined;
50
+ 'aria-activedescendant'?: string | undefined;
51
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
52
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
53
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
54
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
55
+ 'aria-colcount'?: number | undefined;
56
+ 'aria-colindex'?: number | undefined;
57
+ 'aria-colspan'?: number | undefined;
58
+ 'aria-controls'?: string | undefined;
59
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
60
+ 'aria-describedby'?: string | undefined;
61
+ 'aria-details'?: string | undefined;
62
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
63
+ 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
64
+ 'aria-errormessage'?: string | undefined;
65
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
66
+ 'aria-flowto'?: string | undefined;
67
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
68
+ 'aria-haspopup'?: boolean | "true" | "false" | "dialog" | "menu" | "grid" | "listbox" | "tree" | undefined;
69
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
70
+ 'aria-keyshortcuts'?: string | undefined;
71
+ 'aria-labelledby'?: string | undefined;
72
+ 'aria-level'?: number | undefined;
73
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
74
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
75
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
76
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
77
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
78
+ 'aria-owns'?: string | undefined;
79
+ 'aria-placeholder'?: string | undefined;
80
+ 'aria-posinset'?: number | undefined;
81
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
82
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
83
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
84
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
85
+ 'aria-roledescription'?: string | undefined;
86
+ 'aria-rowcount'?: number | undefined;
87
+ 'aria-rowindex'?: number | undefined;
88
+ 'aria-rowspan'?: number | undefined;
89
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
90
+ 'aria-setsize'?: number | undefined;
91
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
92
+ 'aria-valuemax'?: number | undefined;
93
+ 'aria-valuemin'?: number | undefined;
94
+ 'aria-valuenow'?: number | undefined;
95
+ 'aria-valuetext'?: string | undefined;
96
+ children?: import("react").ReactNode;
97
+ dangerouslySetInnerHTML?: {
98
+ __html: string;
99
+ } | undefined;
100
+ onCopy?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
101
+ onCopyCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
102
+ onCut?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
103
+ onCutCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
104
+ onPaste?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
105
+ onPasteCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsLarge> | undefined;
106
+ onCompositionEnd?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
107
+ onCompositionEndCapture?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
108
+ onCompositionStart?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
109
+ onCompositionStartCapture?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
110
+ onCompositionUpdate?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
111
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("icons/src").IconsLarge> | undefined;
112
+ onFocus?: import("react").FocusEventHandler<import("icons/src").IconsLarge> | undefined;
113
+ onFocusCapture?: import("react").FocusEventHandler<import("icons/src").IconsLarge> | undefined;
114
+ onBlur?: import("react").FocusEventHandler<import("icons/src").IconsLarge> | undefined;
115
+ onBlurCapture?: import("react").FocusEventHandler<import("icons/src").IconsLarge> | undefined;
116
+ onChange?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
117
+ onChangeCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
118
+ onBeforeInput?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
119
+ onBeforeInputCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
120
+ onInput?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
121
+ onInputCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
122
+ onReset?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
123
+ onResetCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
124
+ onSubmit?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
125
+ onSubmitCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
126
+ onInvalid?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
127
+ onInvalidCapture?: import("react").FormEventHandler<import("icons/src").IconsLarge> | undefined;
128
+ onLoad?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
129
+ onLoadCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
130
+ onError?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
131
+ onErrorCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
132
+ onKeyDown?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
133
+ onKeyDownCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
134
+ onKeyPress?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
135
+ onKeyPressCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
136
+ onKeyUp?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
137
+ onKeyUpCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsLarge> | undefined;
138
+ onAbort?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
139
+ onAbortCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
140
+ onCanPlay?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
141
+ onCanPlayCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
142
+ onCanPlayThrough?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
143
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
144
+ onDurationChange?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
145
+ onDurationChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
146
+ onEmptied?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
147
+ onEmptiedCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
148
+ onEncrypted?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
149
+ onEncryptedCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
150
+ onEnded?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
151
+ onEndedCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
152
+ onLoadedData?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
153
+ onLoadedDataCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
154
+ onLoadedMetadata?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
155
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
156
+ onLoadStart?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
157
+ onLoadStartCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
158
+ onPause?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
159
+ onPauseCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
160
+ onPlay?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
161
+ onPlayCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
162
+ onPlaying?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
163
+ onPlayingCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
164
+ onProgress?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
165
+ onProgressCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
166
+ onRateChange?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
167
+ onRateChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
168
+ onResize?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
169
+ onResizeCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
170
+ onSeeked?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
171
+ onSeekedCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
172
+ onSeeking?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
173
+ onSeekingCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
174
+ onStalled?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
175
+ onStalledCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
176
+ onSuspend?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
177
+ onSuspendCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
178
+ onTimeUpdate?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
179
+ onTimeUpdateCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
180
+ onVolumeChange?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
181
+ onVolumeChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
182
+ onWaiting?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
183
+ onWaitingCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
184
+ onAuxClick?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
185
+ onAuxClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
186
+ onClick?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
187
+ onClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
188
+ onContextMenu?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
189
+ onContextMenuCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
190
+ onDoubleClick?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
191
+ onDoubleClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
192
+ onDrag?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
193
+ onDragCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
194
+ onDragEnd?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
195
+ onDragEndCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
196
+ onDragEnter?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
197
+ onDragEnterCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
198
+ onDragExit?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
199
+ onDragExitCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
200
+ onDragLeave?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
201
+ onDragLeaveCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
202
+ onDragOver?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
203
+ onDragOverCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
204
+ onDragStart?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
205
+ onDragStartCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
206
+ onDrop?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
207
+ onDropCapture?: import("react").DragEventHandler<import("icons/src").IconsLarge> | undefined;
208
+ onMouseDown?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
209
+ onMouseDownCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
210
+ onMouseEnter?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
211
+ onMouseLeave?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
212
+ onMouseMove?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
213
+ onMouseMoveCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
214
+ onMouseOut?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
215
+ onMouseOutCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
216
+ onMouseOver?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
217
+ onMouseOverCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
218
+ onMouseUp?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
219
+ onMouseUpCapture?: import("react").MouseEventHandler<import("icons/src").IconsLarge> | undefined;
220
+ onSelect?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
221
+ onSelectCapture?: import("react").ReactEventHandler<import("icons/src").IconsLarge> | undefined;
222
+ onTouchCancel?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
223
+ onTouchCancelCapture?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
224
+ onTouchEnd?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
225
+ onTouchEndCapture?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
226
+ onTouchMove?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
227
+ onTouchMoveCapture?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
228
+ onTouchStart?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
229
+ onTouchStartCapture?: import("react").TouchEventHandler<import("icons/src").IconsLarge> | undefined;
230
+ onPointerDown?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
231
+ onPointerDownCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
232
+ onPointerMove?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
233
+ onPointerMoveCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
234
+ onPointerUp?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
235
+ onPointerUpCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
236
+ onPointerCancel?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
237
+ onPointerCancelCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
238
+ onPointerEnter?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
239
+ onPointerEnterCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
240
+ onPointerLeave?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
241
+ onPointerLeaveCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
242
+ onPointerOver?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
243
+ onPointerOverCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
244
+ onPointerOut?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
245
+ onPointerOutCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
246
+ onGotPointerCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
247
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
248
+ onLostPointerCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
249
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("icons/src").IconsLarge> | undefined;
250
+ onScroll?: import("react").UIEventHandler<import("icons/src").IconsLarge> | undefined;
251
+ onScrollCapture?: import("react").UIEventHandler<import("icons/src").IconsLarge> | undefined;
252
+ onWheel?: import("react").WheelEventHandler<import("icons/src").IconsLarge> | undefined;
253
+ onWheelCapture?: import("react").WheelEventHandler<import("icons/src").IconsLarge> | undefined;
254
+ onAnimationStart?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
255
+ onAnimationStartCapture?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
256
+ onAnimationEnd?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
257
+ onAnimationEndCapture?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
258
+ onAnimationIteration?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
259
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<import("icons/src").IconsLarge> | undefined;
260
+ onTransitionEnd?: import("react").TransitionEventHandler<import("icons/src").IconsLarge> | undefined;
261
+ onTransitionEndCapture?: import("react").TransitionEventHandler<import("icons/src").IconsLarge> | undefined;
262
+ } & {
263
+ readonly attributes: NamedNodeMap;
264
+ readonly localName: string;
265
+ name: string;
266
+ blur: () => void;
267
+ click: () => void;
268
+ focus: (options?: FocusOptions | undefined) => void;
269
+ scroll: {
270
+ (options?: ScrollToOptions | undefined): void;
271
+ (x: number, y: number): void;
272
+ };
273
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
274
+ readonly accessKeyLabel: string;
275
+ autocapitalize: string;
276
+ inert: boolean;
277
+ innerText: string;
278
+ readonly offsetHeight: number;
279
+ readonly offsetLeft: number;
280
+ readonly offsetParent: Element | null;
281
+ readonly offsetTop: number;
282
+ readonly offsetWidth: number;
283
+ outerText: string;
284
+ spellcheck: boolean;
285
+ attachInternals: () => ElementInternals;
286
+ addEventListener: {
287
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
288
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
289
+ };
290
+ removeEventListener: {
291
+ <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
292
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
293
+ };
294
+ readonly classList: DOMTokenList;
295
+ readonly clientHeight: number;
296
+ readonly clientLeft: number;
297
+ readonly clientTop: number;
298
+ readonly clientWidth: number;
299
+ readonly namespaceURI: string | null;
300
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
301
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
302
+ outerHTML: string;
303
+ readonly ownerDocument: Document;
304
+ readonly part: DOMTokenList;
305
+ readonly scrollHeight: number;
306
+ scrollLeft: number;
307
+ scrollTop: number;
308
+ readonly scrollWidth: number;
309
+ readonly shadowRoot: ShadowRoot | null;
310
+ readonly tagName: string;
311
+ attachShadow: (init: ShadowRootInit) => ShadowRoot;
312
+ closest: {
313
+ <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
314
+ <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
315
+ <E extends Element = Element>(selectors: string): E | null;
316
+ };
317
+ getAttribute: (qualifiedName: string) => string | null;
318
+ getAttributeNS: (namespace: string | null, localName: string) => string | null;
319
+ getAttributeNames: () => string[];
320
+ getAttributeNode: (qualifiedName: string) => Attr | null;
321
+ getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
322
+ getBoundingClientRect: () => DOMRect;
323
+ getClientRects: () => DOMRectList;
324
+ getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
325
+ getElementsByTagName: {
326
+ <K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
327
+ <K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
328
+ (qualifiedName: string): HTMLCollectionOf<Element>;
329
+ };
330
+ getElementsByTagNameNS: {
331
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
332
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
333
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
334
+ };
335
+ hasAttribute: (qualifiedName: string) => boolean;
336
+ hasAttributeNS: (namespace: string | null, localName: string) => boolean;
337
+ hasAttributes: () => boolean;
338
+ hasPointerCapture: (pointerId: number) => boolean;
339
+ insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
340
+ insertAdjacentHTML: (position: InsertPosition, text: string) => void;
341
+ insertAdjacentText: (where: InsertPosition, data: string) => void;
342
+ matches: (selectors: string) => boolean;
343
+ releasePointerCapture: (pointerId: number) => void;
344
+ removeAttribute: (qualifiedName: string) => void;
345
+ removeAttributeNS: (namespace: string | null, localName: string) => void;
346
+ removeAttributeNode: (attr: Attr) => Attr;
347
+ requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
348
+ requestPointerLock: () => void;
349
+ scrollBy: {
350
+ (options?: ScrollToOptions | undefined): void;
351
+ (x: number, y: number): void;
352
+ };
353
+ scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
354
+ scrollTo: {
355
+ (options?: ScrollToOptions | undefined): void;
356
+ (x: number, y: number): void;
357
+ };
358
+ setAttribute: (qualifiedName: string, value: string) => void;
359
+ setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
360
+ setAttributeNode: (attr: Attr) => Attr | null;
361
+ setAttributeNodeNS: (attr: Attr) => Attr | null;
362
+ setPointerCapture: (pointerId: number) => void;
363
+ toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
364
+ webkitMatchesSelector: (selectors: string) => boolean;
365
+ readonly baseURI: string;
366
+ readonly childNodes: NodeListOf<ChildNode>;
367
+ readonly firstChild: ChildNode | null;
368
+ readonly isConnected: boolean;
369
+ readonly lastChild: ChildNode | null;
370
+ readonly nextSibling: ChildNode | null;
371
+ readonly nodeName: string;
372
+ readonly nodeType: number;
373
+ nodeValue: string | null;
374
+ readonly parentElement: HTMLElement | null;
375
+ readonly parentNode: ParentNode | null;
376
+ readonly previousSibling: ChildNode | null;
377
+ textContent: string | null;
378
+ appendChild: <T extends Node>(node: T) => T;
379
+ cloneNode: (deep?: boolean | undefined) => Node;
380
+ compareDocumentPosition: (other: Node) => number;
381
+ contains: (other: Node | null) => boolean;
382
+ getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
383
+ hasChildNodes: () => boolean;
384
+ insertBefore: <T_1 extends Node>(node: T_1, child: Node | null) => T_1;
385
+ isDefaultNamespace: (namespace: string | null) => boolean;
386
+ isEqualNode: (otherNode: Node | null) => boolean;
387
+ isSameNode: (otherNode: Node | null) => boolean;
388
+ lookupNamespaceURI: (prefix: string | null) => string | null;
389
+ lookupPrefix: (namespace: string | null) => string | null;
390
+ normalize: () => void;
391
+ removeChild: <T_2 extends Node>(child: T_2) => T_2;
392
+ replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
393
+ readonly ATTRIBUTE_NODE: number;
394
+ readonly CDATA_SECTION_NODE: number;
395
+ readonly COMMENT_NODE: number;
396
+ readonly DOCUMENT_FRAGMENT_NODE: number;
397
+ readonly DOCUMENT_NODE: number;
398
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
399
+ readonly DOCUMENT_POSITION_CONTAINS: number;
400
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
401
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
402
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
403
+ readonly DOCUMENT_POSITION_PRECEDING: number;
404
+ readonly DOCUMENT_TYPE_NODE: number;
405
+ readonly ELEMENT_NODE: number;
406
+ readonly ENTITY_NODE: number;
407
+ readonly ENTITY_REFERENCE_NODE: number;
408
+ readonly NOTATION_NODE: number;
409
+ readonly PROCESSING_INSTRUCTION_NODE: number;
410
+ readonly TEXT_NODE: number;
411
+ dispatchEvent: (event: Event) => boolean;
412
+ ariaAtomic: string | null;
413
+ ariaAutoComplete: string | null;
414
+ ariaBusy: string | null;
415
+ ariaChecked: string | null;
416
+ ariaColCount: string | null;
417
+ ariaColIndex: string | null;
418
+ ariaColSpan: string | null;
419
+ ariaCurrent: string | null;
420
+ ariaDisabled: string | null;
421
+ ariaExpanded: string | null;
422
+ ariaHasPopup: string | null;
423
+ ariaHidden: string | null;
424
+ ariaKeyShortcuts: string | null;
425
+ ariaLabel: string | null;
426
+ ariaLevel: string | null;
427
+ ariaLive: string | null;
428
+ ariaModal: string | null;
429
+ ariaMultiLine: string | null;
430
+ ariaMultiSelectable: string | null;
431
+ ariaOrientation: string | null;
432
+ ariaPlaceholder: string | null;
433
+ ariaPosInSet: string | null;
434
+ ariaPressed: string | null;
435
+ ariaReadOnly: string | null;
436
+ ariaRequired: string | null;
437
+ ariaRoleDescription: string | null;
438
+ ariaRowCount: string | null;
439
+ ariaRowIndex: string | null;
440
+ ariaRowSpan: string | null;
441
+ ariaSelected: string | null;
442
+ ariaSetSize: string | null;
443
+ ariaSort: string | null;
444
+ ariaValueMax: string | null;
445
+ ariaValueMin: string | null;
446
+ ariaValueNow: string | null;
447
+ ariaValueText: string | null;
448
+ getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
449
+ after: (...nodes: (string | Node)[]) => void;
450
+ before: (...nodes: (string | Node)[]) => void;
451
+ remove: () => void;
452
+ replaceWith: (...nodes: (string | Node)[]) => void;
453
+ innerHTML: string;
454
+ readonly nextElementSibling: Element | null;
455
+ readonly previousElementSibling: Element | null;
456
+ readonly childElementCount: number;
457
+ readonly firstElementChild: Element | null;
458
+ readonly lastElementChild: Element | null;
459
+ append: (...nodes: (string | Node)[]) => void;
460
+ prepend: (...nodes: (string | Node)[]) => void;
461
+ querySelector: {
462
+ <K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
463
+ <K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
464
+ <E_1 extends Element = Element>(selectors: string): E_1 | null;
465
+ };
466
+ querySelectorAll: {
467
+ <K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
468
+ <K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
469
+ <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
470
+ };
471
+ replaceChildren: (...nodes: (string | Node)[]) => void;
472
+ readonly assignedSlot: HTMLSlotElement | null;
473
+ oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
474
+ oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
475
+ onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
476
+ enterKeyHint: string;
477
+ readonly isContentEditable: boolean;
478
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
479
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
480
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
481
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
482
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
483
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
484
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
485
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
486
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
487
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
488
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
489
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
490
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
491
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
492
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
493
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
494
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
495
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
496
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
497
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
498
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
499
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
500
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
501
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
502
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
503
+ onerror: OnErrorEventHandler;
504
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
505
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
506
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
507
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
508
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
509
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
510
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
511
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
512
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
513
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
514
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
515
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
516
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
517
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
518
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
519
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
520
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
521
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
522
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
523
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
524
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
525
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
526
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
527
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
528
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
529
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
530
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
531
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
532
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
533
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
534
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
535
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
536
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
537
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
538
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
539
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
540
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
541
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
542
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
543
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
544
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
545
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
546
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
547
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
548
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
549
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
550
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
551
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
552
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
553
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
554
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
555
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
556
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
557
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
558
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
559
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
560
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
561
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
562
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
563
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
564
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
565
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
566
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
567
+ autofocus: boolean;
568
+ readonly dataset: DOMStringMap;
569
+ updated: (changedProperties: import("lit").PropertyValueMap<any> | Map<PropertyKey, unknown>) => void;
570
+ applyIconToElement: (el: HTMLElement, icon: string, _size: string, label: string) => Promise<void>;
571
+ getIconList: () => string[];
572
+ connectedCallback: () => void;
573
+ disconnectedCallback: () => void;
574
+ readonly renderOptions: import("lit-html").RenderOptions;
575
+ readonly renderRoot: HTMLElement | ShadowRoot;
576
+ isUpdatePending: boolean;
577
+ hasUpdated: boolean;
578
+ addController: (controller: import("lit").ReactiveController) => void;
579
+ removeController: (controller: import("lit").ReactiveController) => void;
580
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
581
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
582
+ readonly updateComplete: Promise<boolean>;
583
+ } & {}> & import("react").RefAttributes<import("icons/src").IconsLarge>>;
584
+ export declare const IconsMedium: import("react").ComponentType<Partial<{
585
+ dir?: string | undefined;
586
+ slot?: string | undefined;
587
+ role?: import("react").AriaRole | undefined;
588
+ 'aria-label'?: string | undefined;
589
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
590
+ style?: import("react").CSSProperties | undefined;
591
+ title?: string | undefined;
592
+ defaultChecked?: boolean | undefined;
593
+ defaultValue?: string | number | readonly string[] | undefined;
594
+ suppressContentEditableWarning?: boolean | undefined;
595
+ suppressHydrationWarning?: boolean | undefined;
596
+ accessKey?: string | undefined;
597
+ className?: string | undefined;
598
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
599
+ contextMenu?: string | undefined;
600
+ draggable?: (boolean | "true" | "false") | undefined;
601
+ hidden?: boolean | undefined;
602
+ id?: string | undefined;
603
+ lang?: string | undefined;
604
+ nonce?: string | undefined;
605
+ placeholder?: string | undefined;
606
+ spellCheck?: (boolean | "true" | "false") | undefined;
607
+ tabIndex?: number | undefined;
608
+ translate?: "yes" | "no" | undefined;
609
+ radioGroup?: string | undefined;
610
+ about?: string | undefined;
611
+ datatype?: string | undefined;
612
+ inlist?: any;
613
+ prefix?: string | undefined;
614
+ property?: string | undefined;
615
+ resource?: string | undefined;
616
+ typeof?: string | undefined;
617
+ vocab?: string | undefined;
618
+ autoCapitalize?: string | undefined;
619
+ autoCorrect?: string | undefined;
620
+ autoSave?: string | undefined;
621
+ color?: string | undefined;
622
+ itemProp?: string | undefined;
623
+ itemScope?: boolean | undefined;
624
+ itemType?: string | undefined;
625
+ itemID?: string | undefined;
626
+ itemRef?: string | undefined;
627
+ results?: number | undefined;
628
+ security?: string | undefined;
629
+ unselectable?: "on" | "off" | undefined;
630
+ inputMode?: "none" | "text" | "search" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
631
+ is?: string | undefined;
632
+ 'aria-activedescendant'?: string | undefined;
633
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
634
+ 'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
635
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
636
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
637
+ 'aria-colcount'?: number | undefined;
638
+ 'aria-colindex'?: number | undefined;
639
+ 'aria-colspan'?: number | undefined;
640
+ 'aria-controls'?: string | undefined;
641
+ 'aria-current'?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
642
+ 'aria-describedby'?: string | undefined;
643
+ 'aria-details'?: string | undefined;
644
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
645
+ 'aria-dropeffect'?: "none" | "link" | "copy" | "execute" | "move" | "popup" | undefined;
646
+ 'aria-errormessage'?: string | undefined;
647
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
648
+ 'aria-flowto'?: string | undefined;
649
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
650
+ 'aria-haspopup'?: boolean | "true" | "false" | "dialog" | "menu" | "grid" | "listbox" | "tree" | undefined;
651
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
652
+ 'aria-keyshortcuts'?: string | undefined;
653
+ 'aria-labelledby'?: string | undefined;
654
+ 'aria-level'?: number | undefined;
655
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
656
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
657
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
658
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
659
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
660
+ 'aria-owns'?: string | undefined;
661
+ 'aria-placeholder'?: string | undefined;
662
+ 'aria-posinset'?: number | undefined;
663
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
664
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
665
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
666
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
667
+ 'aria-roledescription'?: string | undefined;
668
+ 'aria-rowcount'?: number | undefined;
669
+ 'aria-rowindex'?: number | undefined;
670
+ 'aria-rowspan'?: number | undefined;
671
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
672
+ 'aria-setsize'?: number | undefined;
673
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
674
+ 'aria-valuemax'?: number | undefined;
675
+ 'aria-valuemin'?: number | undefined;
676
+ 'aria-valuenow'?: number | undefined;
677
+ 'aria-valuetext'?: string | undefined;
678
+ children?: import("react").ReactNode;
679
+ dangerouslySetInnerHTML?: {
680
+ __html: string;
681
+ } | undefined;
682
+ onCopy?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
683
+ onCopyCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
684
+ onCut?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
685
+ onCutCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
686
+ onPaste?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
687
+ onPasteCapture?: import("react").ClipboardEventHandler<import("icons/src").IconsMedium> | undefined;
688
+ onCompositionEnd?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
689
+ onCompositionEndCapture?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
690
+ onCompositionStart?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
691
+ onCompositionStartCapture?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
692
+ onCompositionUpdate?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
693
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("icons/src").IconsMedium> | undefined;
694
+ onFocus?: import("react").FocusEventHandler<import("icons/src").IconsMedium> | undefined;
695
+ onFocusCapture?: import("react").FocusEventHandler<import("icons/src").IconsMedium> | undefined;
696
+ onBlur?: import("react").FocusEventHandler<import("icons/src").IconsMedium> | undefined;
697
+ onBlurCapture?: import("react").FocusEventHandler<import("icons/src").IconsMedium> | undefined;
698
+ onChange?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
699
+ onChangeCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
700
+ onBeforeInput?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
701
+ onBeforeInputCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
702
+ onInput?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
703
+ onInputCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
704
+ onReset?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
705
+ onResetCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
706
+ onSubmit?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
707
+ onSubmitCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
708
+ onInvalid?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
709
+ onInvalidCapture?: import("react").FormEventHandler<import("icons/src").IconsMedium> | undefined;
710
+ onLoad?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
711
+ onLoadCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
712
+ onError?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
713
+ onErrorCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
714
+ onKeyDown?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
715
+ onKeyDownCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
716
+ onKeyPress?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
717
+ onKeyPressCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
718
+ onKeyUp?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
719
+ onKeyUpCapture?: import("react").KeyboardEventHandler<import("icons/src").IconsMedium> | undefined;
720
+ onAbort?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
721
+ onAbortCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
722
+ onCanPlay?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
723
+ onCanPlayCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
724
+ onCanPlayThrough?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
725
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
726
+ onDurationChange?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
727
+ onDurationChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
728
+ onEmptied?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
729
+ onEmptiedCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
730
+ onEncrypted?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
731
+ onEncryptedCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
732
+ onEnded?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
733
+ onEndedCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
734
+ onLoadedData?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
735
+ onLoadedDataCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
736
+ onLoadedMetadata?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
737
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
738
+ onLoadStart?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
739
+ onLoadStartCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
740
+ onPause?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
741
+ onPauseCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
742
+ onPlay?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
743
+ onPlayCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
744
+ onPlaying?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
745
+ onPlayingCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
746
+ onProgress?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
747
+ onProgressCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
748
+ onRateChange?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
749
+ onRateChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
750
+ onResize?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
751
+ onResizeCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
752
+ onSeeked?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
753
+ onSeekedCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
754
+ onSeeking?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
755
+ onSeekingCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
756
+ onStalled?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
757
+ onStalledCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
758
+ onSuspend?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
759
+ onSuspendCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
760
+ onTimeUpdate?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
761
+ onTimeUpdateCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
762
+ onVolumeChange?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
763
+ onVolumeChangeCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
764
+ onWaiting?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
765
+ onWaitingCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
766
+ onAuxClick?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
767
+ onAuxClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
768
+ onClick?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
769
+ onClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
770
+ onContextMenu?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
771
+ onContextMenuCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
772
+ onDoubleClick?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
773
+ onDoubleClickCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
774
+ onDrag?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
775
+ onDragCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
776
+ onDragEnd?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
777
+ onDragEndCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
778
+ onDragEnter?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
779
+ onDragEnterCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
780
+ onDragExit?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
781
+ onDragExitCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
782
+ onDragLeave?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
783
+ onDragLeaveCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
784
+ onDragOver?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
785
+ onDragOverCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
786
+ onDragStart?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
787
+ onDragStartCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
788
+ onDrop?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
789
+ onDropCapture?: import("react").DragEventHandler<import("icons/src").IconsMedium> | undefined;
790
+ onMouseDown?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
791
+ onMouseDownCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
792
+ onMouseEnter?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
793
+ onMouseLeave?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
794
+ onMouseMove?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
795
+ onMouseMoveCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
796
+ onMouseOut?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
797
+ onMouseOutCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
798
+ onMouseOver?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
799
+ onMouseOverCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
800
+ onMouseUp?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
801
+ onMouseUpCapture?: import("react").MouseEventHandler<import("icons/src").IconsMedium> | undefined;
802
+ onSelect?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
803
+ onSelectCapture?: import("react").ReactEventHandler<import("icons/src").IconsMedium> | undefined;
804
+ onTouchCancel?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
805
+ onTouchCancelCapture?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
806
+ onTouchEnd?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
807
+ onTouchEndCapture?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
808
+ onTouchMove?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
809
+ onTouchMoveCapture?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
810
+ onTouchStart?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
811
+ onTouchStartCapture?: import("react").TouchEventHandler<import("icons/src").IconsMedium> | undefined;
812
+ onPointerDown?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
813
+ onPointerDownCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
814
+ onPointerMove?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
815
+ onPointerMoveCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
816
+ onPointerUp?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
817
+ onPointerUpCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
818
+ onPointerCancel?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
819
+ onPointerCancelCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
820
+ onPointerEnter?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
821
+ onPointerEnterCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
822
+ onPointerLeave?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
823
+ onPointerLeaveCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
824
+ onPointerOver?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
825
+ onPointerOverCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
826
+ onPointerOut?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
827
+ onPointerOutCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
828
+ onGotPointerCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
829
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
830
+ onLostPointerCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
831
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("icons/src").IconsMedium> | undefined;
832
+ onScroll?: import("react").UIEventHandler<import("icons/src").IconsMedium> | undefined;
833
+ onScrollCapture?: import("react").UIEventHandler<import("icons/src").IconsMedium> | undefined;
834
+ onWheel?: import("react").WheelEventHandler<import("icons/src").IconsMedium> | undefined;
835
+ onWheelCapture?: import("react").WheelEventHandler<import("icons/src").IconsMedium> | undefined;
836
+ onAnimationStart?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
837
+ onAnimationStartCapture?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
838
+ onAnimationEnd?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
839
+ onAnimationEndCapture?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
840
+ onAnimationIteration?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
841
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<import("icons/src").IconsMedium> | undefined;
842
+ onTransitionEnd?: import("react").TransitionEventHandler<import("icons/src").IconsMedium> | undefined;
843
+ onTransitionEndCapture?: import("react").TransitionEventHandler<import("icons/src").IconsMedium> | undefined;
844
+ } & {
845
+ readonly attributes: NamedNodeMap;
846
+ readonly localName: string;
847
+ name: string;
848
+ blur: () => void;
849
+ click: () => void;
850
+ focus: (options?: FocusOptions | undefined) => void;
851
+ scroll: {
852
+ (options?: ScrollToOptions | undefined): void;
853
+ (x: number, y: number): void;
854
+ };
855
+ animate: (keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined) => Animation;
856
+ readonly accessKeyLabel: string;
857
+ autocapitalize: string;
858
+ inert: boolean;
859
+ innerText: string;
860
+ readonly offsetHeight: number;
861
+ readonly offsetLeft: number;
862
+ readonly offsetParent: Element | null;
863
+ readonly offsetTop: number;
864
+ readonly offsetWidth: number;
865
+ outerText: string;
866
+ spellcheck: boolean;
867
+ attachInternals: () => ElementInternals;
868
+ addEventListener: {
869
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
870
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
871
+ };
872
+ removeEventListener: {
873
+ <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
874
+ (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
875
+ };
876
+ readonly classList: DOMTokenList;
877
+ readonly clientHeight: number;
878
+ readonly clientLeft: number;
879
+ readonly clientTop: number;
880
+ readonly clientWidth: number;
881
+ readonly namespaceURI: string | null;
882
+ onfullscreenchange: ((this: Element, ev: Event) => any) | null;
883
+ onfullscreenerror: ((this: Element, ev: Event) => any) | null;
884
+ outerHTML: string;
885
+ readonly ownerDocument: Document;
886
+ readonly part: DOMTokenList;
887
+ readonly scrollHeight: number;
888
+ scrollLeft: number;
889
+ scrollTop: number;
890
+ readonly scrollWidth: number;
891
+ readonly shadowRoot: ShadowRoot | null;
892
+ readonly tagName: string;
893
+ attachShadow: (init: ShadowRootInit) => ShadowRoot;
894
+ closest: {
895
+ <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
896
+ <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
897
+ <E extends Element = Element>(selectors: string): E | null;
898
+ };
899
+ getAttribute: (qualifiedName: string) => string | null;
900
+ getAttributeNS: (namespace: string | null, localName: string) => string | null;
901
+ getAttributeNames: () => string[];
902
+ getAttributeNode: (qualifiedName: string) => Attr | null;
903
+ getAttributeNodeNS: (namespace: string | null, localName: string) => Attr | null;
904
+ getBoundingClientRect: () => DOMRect;
905
+ getClientRects: () => DOMRectList;
906
+ getElementsByClassName: (classNames: string) => HTMLCollectionOf<Element>;
907
+ getElementsByTagName: {
908
+ <K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
909
+ <K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
910
+ (qualifiedName: string): HTMLCollectionOf<Element>;
911
+ };
912
+ getElementsByTagNameNS: {
913
+ (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
914
+ (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
915
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
916
+ };
917
+ hasAttribute: (qualifiedName: string) => boolean;
918
+ hasAttributeNS: (namespace: string | null, localName: string) => boolean;
919
+ hasAttributes: () => boolean;
920
+ hasPointerCapture: (pointerId: number) => boolean;
921
+ insertAdjacentElement: (where: InsertPosition, element: Element) => Element | null;
922
+ insertAdjacentHTML: (position: InsertPosition, text: string) => void;
923
+ insertAdjacentText: (where: InsertPosition, data: string) => void;
924
+ matches: (selectors: string) => boolean;
925
+ releasePointerCapture: (pointerId: number) => void;
926
+ removeAttribute: (qualifiedName: string) => void;
927
+ removeAttributeNS: (namespace: string | null, localName: string) => void;
928
+ removeAttributeNode: (attr: Attr) => Attr;
929
+ requestFullscreen: (options?: FullscreenOptions | undefined) => Promise<void>;
930
+ requestPointerLock: () => void;
931
+ scrollBy: {
932
+ (options?: ScrollToOptions | undefined): void;
933
+ (x: number, y: number): void;
934
+ };
935
+ scrollIntoView: (arg?: boolean | ScrollIntoViewOptions | undefined) => void;
936
+ scrollTo: {
937
+ (options?: ScrollToOptions | undefined): void;
938
+ (x: number, y: number): void;
939
+ };
940
+ setAttribute: (qualifiedName: string, value: string) => void;
941
+ setAttributeNS: (namespace: string | null, qualifiedName: string, value: string) => void;
942
+ setAttributeNode: (attr: Attr) => Attr | null;
943
+ setAttributeNodeNS: (attr: Attr) => Attr | null;
944
+ setPointerCapture: (pointerId: number) => void;
945
+ toggleAttribute: (qualifiedName: string, force?: boolean | undefined) => boolean;
946
+ webkitMatchesSelector: (selectors: string) => boolean;
947
+ readonly baseURI: string;
948
+ readonly childNodes: NodeListOf<ChildNode>;
949
+ readonly firstChild: ChildNode | null;
950
+ readonly isConnected: boolean;
951
+ readonly lastChild: ChildNode | null;
952
+ readonly nextSibling: ChildNode | null;
953
+ readonly nodeName: string;
954
+ readonly nodeType: number;
955
+ nodeValue: string | null;
956
+ readonly parentElement: HTMLElement | null;
957
+ readonly parentNode: ParentNode | null;
958
+ readonly previousSibling: ChildNode | null;
959
+ textContent: string | null;
960
+ appendChild: <T extends Node>(node: T) => T;
961
+ cloneNode: (deep?: boolean | undefined) => Node;
962
+ compareDocumentPosition: (other: Node) => number;
963
+ contains: (other: Node | null) => boolean;
964
+ getRootNode: (options?: GetRootNodeOptions | undefined) => Node;
965
+ hasChildNodes: () => boolean;
966
+ insertBefore: <T extends Node>(node: T, child: Node | null) => T;
967
+ isDefaultNamespace: (namespace: string | null) => boolean;
968
+ isEqualNode: (otherNode: Node | null) => boolean;
969
+ isSameNode: (otherNode: Node | null) => boolean;
970
+ lookupNamespaceURI: (prefix: string | null) => string | null;
971
+ lookupPrefix: (namespace: string | null) => string | null;
972
+ normalize: () => void;
973
+ removeChild: <T_2 extends Node>(child: T_2) => T_2;
974
+ replaceChild: <T_3 extends Node>(node: Node, child: T_3) => T_3;
975
+ readonly ATTRIBUTE_NODE: number;
976
+ readonly CDATA_SECTION_NODE: number;
977
+ readonly COMMENT_NODE: number;
978
+ readonly DOCUMENT_FRAGMENT_NODE: number;
979
+ readonly DOCUMENT_NODE: number;
980
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
981
+ readonly DOCUMENT_POSITION_CONTAINS: number;
982
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
983
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
984
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
985
+ readonly DOCUMENT_POSITION_PRECEDING: number;
986
+ readonly DOCUMENT_TYPE_NODE: number;
987
+ readonly ELEMENT_NODE: number;
988
+ readonly ENTITY_NODE: number;
989
+ readonly ENTITY_REFERENCE_NODE: number;
990
+ readonly NOTATION_NODE: number;
991
+ readonly PROCESSING_INSTRUCTION_NODE: number;
992
+ readonly TEXT_NODE: number;
993
+ dispatchEvent: (event: Event) => boolean;
994
+ ariaAtomic: string | null;
995
+ ariaAutoComplete: string | null;
996
+ ariaBusy: string | null;
997
+ ariaChecked: string | null;
998
+ ariaColCount: string | null;
999
+ ariaColIndex: string | null;
1000
+ ariaColSpan: string | null;
1001
+ ariaCurrent: string | null;
1002
+ ariaDisabled: string | null;
1003
+ ariaExpanded: string | null;
1004
+ ariaHasPopup: string | null;
1005
+ ariaHidden: string | null;
1006
+ ariaKeyShortcuts: string | null;
1007
+ ariaLabel: string | null;
1008
+ ariaLevel: string | null;
1009
+ ariaLive: string | null;
1010
+ ariaModal: string | null;
1011
+ ariaMultiLine: string | null;
1012
+ ariaMultiSelectable: string | null;
1013
+ ariaOrientation: string | null;
1014
+ ariaPlaceholder: string | null;
1015
+ ariaPosInSet: string | null;
1016
+ ariaPressed: string | null;
1017
+ ariaReadOnly: string | null;
1018
+ ariaRequired: string | null;
1019
+ ariaRoleDescription: string | null;
1020
+ ariaRowCount: string | null;
1021
+ ariaRowIndex: string | null;
1022
+ ariaRowSpan: string | null;
1023
+ ariaSelected: string | null;
1024
+ ariaSetSize: string | null;
1025
+ ariaSort: string | null;
1026
+ ariaValueMax: string | null;
1027
+ ariaValueMin: string | null;
1028
+ ariaValueNow: string | null;
1029
+ ariaValueText: string | null;
1030
+ getAnimations: (options?: GetAnimationsOptions | undefined) => Animation[];
1031
+ after: (...nodes: (string | Node)[]) => void;
1032
+ before: (...nodes: (string | Node)[]) => void;
1033
+ remove: () => void;
1034
+ replaceWith: (...nodes: (string | Node)[]) => void;
1035
+ innerHTML: string;
1036
+ readonly nextElementSibling: Element | null;
1037
+ readonly previousElementSibling: Element | null;
1038
+ readonly childElementCount: number;
1039
+ readonly firstElementChild: Element | null;
1040
+ readonly lastElementChild: Element | null;
1041
+ append: (...nodes: (string | Node)[]) => void;
1042
+ prepend: (...nodes: (string | Node)[]) => void;
1043
+ querySelector: {
1044
+ <K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6] | null;
1045
+ <K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7] | null;
1046
+ <E_1 extends Element = Element>(selectors: string): E_1 | null;
1047
+ };
1048
+ querySelectorAll: {
1049
+ <K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
1050
+ <K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
1051
+ <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1052
+ };
1053
+ replaceChildren: (...nodes: (string | Node)[]) => void;
1054
+ readonly assignedSlot: HTMLSlotElement | null;
1055
+ oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1056
+ oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1057
+ onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null;
1058
+ enterKeyHint: string;
1059
+ readonly isContentEditable: boolean;
1060
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1061
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1062
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1063
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1064
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
1065
+ onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1066
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1067
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1068
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1069
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1070
+ onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1071
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1072
+ oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1073
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1074
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1075
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1076
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1077
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1078
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1079
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1080
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1081
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
1082
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1083
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1084
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1085
+ onerror: OnErrorEventHandler;
1086
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
1087
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
1088
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1089
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1090
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1091
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1092
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1093
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
1094
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1095
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1096
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1097
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1098
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1099
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1100
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1101
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1102
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1103
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1104
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1105
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
1106
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1107
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1108
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1109
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1110
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1111
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1112
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1113
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1114
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1115
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1116
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
1117
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
1118
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1119
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1120
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
1121
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1122
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
1123
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1124
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1125
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1126
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1127
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1128
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1129
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1130
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
1131
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1132
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1133
+ ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1134
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1135
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1136
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1137
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
1138
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1139
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1140
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1141
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
1142
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1143
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1144
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1145
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1146
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1147
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
1148
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
1149
+ autofocus: boolean;
1150
+ readonly dataset: DOMStringMap;
1151
+ updated: (changedProperties: import("lit").PropertyValueMap<any> | Map<PropertyKey, unknown>) => void;
1152
+ applyIconToElement: (el: HTMLElement, icon: string, _size: string, label: string) => Promise<void>;
1153
+ getIconList: () => string[];
1154
+ connectedCallback: () => void;
1155
+ disconnectedCallback: () => void;
1156
+ readonly renderOptions: import("lit-html").RenderOptions;
1157
+ readonly renderRoot: HTMLElement | ShadowRoot;
1158
+ isUpdatePending: boolean;
1159
+ hasUpdated: boolean;
1160
+ addController: (controller: import("lit").ReactiveController) => void;
1161
+ removeController: (controller: import("lit").ReactiveController) => void;
1162
+ attributeChangedCallback: (name: string, _old: string | null, value: string | null) => void;
1163
+ requestUpdate: (name?: PropertyKey | undefined, oldValue?: unknown, options?: import("lit").PropertyDeclaration<unknown, unknown> | undefined) => void;
1164
+ readonly updateComplete: Promise<boolean>;
1165
+ } & {}> & import("react").RefAttributes<import("icons/src").IconsMedium>>;
package/next.dev.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ import dynamic from "next/dynamic";
3
+ export const IconsLarge = dynamic(() => import(".").then(({ IconsLarge: IconsLarge2 }) => IconsLarge2), { ssr: false });
4
+ export const IconsMedium = dynamic(() => import(".").then(({ IconsMedium: IconsMedium2 }) => IconsMedium2), { ssr: false });
5
+ //# sourceMappingURL=next.dev.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { IconsLarge as SpIconsLarge } from '.';\nimport { IconsMedium as SpIconsMedium } from '.';\n\nexport const IconsLarge = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpIconsLarge,\n ComponentProps<typeof SpIconsLarge>\n >\n>(() => import('.').then(({ IconsLarge }) => IconsLarge), { ssr: false });\nexport const IconsMedium = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpIconsMedium,\n ComponentProps<typeof SpIconsMedium>\n >\n>(() => import('.').then(({ IconsMedium }) => IconsMedium), { ssr: false });\n"],
5
+ "mappings": ";AAaA,OAAO,aAAa;AAKb,aAAM,aAAa,QAKxB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,YAAAA,YAAW,MAAMA,WAAU,GAAG,EAAE,KAAK,MAAM,CAAC;AACjE,aAAM,cAAc,QAKzB,MAAM,OAAO,GAAG,EAAE,KAAK,CAAC,EAAE,aAAAC,aAAY,MAAMA,YAAW,GAAG,EAAE,KAAK,MAAM,CAAC;",
6
+ "names": ["IconsLarge", "IconsMedium"]
7
+ }
package/next.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";import r from"next/dynamic";export const IconsLarge=r(()=>import(".").then(({IconsLarge:o})=>o),{ssr:!1}),IconsMedium=r(()=>import(".").then(({IconsMedium:o})=>o),{ssr:!1});
2
+ //# sourceMappingURL=next.js.map
package/next.js.map ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["next.ts"],
4
+ "sourcesContent": ["/*\nCopyright 2023 Adobe. All rights reserved.\nThis file is licensed to you under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License. You may obtain a copy\nof the License at http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under\nthe License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\nOF ANY KIND, either express or implied. See the License for the specific language\ngoverning permissions and limitations under the License.\n*/\n\nimport { ComponentProps } from 'react';\nimport dynamic from 'next/dynamic';\n\nimport { IconsLarge as SpIconsLarge } from '.';\nimport { IconsMedium as SpIconsMedium } from '.';\n\nexport const IconsLarge = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpIconsLarge,\n ComponentProps<typeof SpIconsLarge>\n >\n>(() => import('.').then(({ IconsLarge }) => IconsLarge), { ssr: false });\nexport const IconsMedium = dynamic<\n JSX.LibraryManagedAttributes<\n typeof SpIconsMedium,\n ComponentProps<typeof SpIconsMedium>\n >\n>(() => import('.').then(({ IconsMedium }) => IconsMedium), { ssr: false });\n"],
5
+ "mappings": "aAaA,OAAOA,MAAa,eAKb,aAAM,WAAaA,EAKxB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,WAAAC,CAAW,IAAMA,CAAU,EAAG,CAAE,IAAK,EAAM,CAAC,EAC3D,YAAcD,EAKzB,IAAM,OAAO,GAAG,EAAE,KAAK,CAAC,CAAE,YAAAE,CAAY,IAAMA,CAAW,EAAG,CAAE,IAAK,EAAM,CAAC",
6
+ "names": ["dynamic", "IconsLarge", "IconsMedium"]
7
+ }
package/package.json CHANGED
@@ -1,13 +1,23 @@
1
1
  {
2
2
  "name": "@swc-react/icons",
3
- "version": "0.31.0",
3
+ "version": "0.31.1-react.3+886f51591",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "description": "React wrapper of the @spectrum-web-components/icons component",
7
+ "description": "React and Next.js wrapper of the @spectrum-web-components/icons component",
8
8
  "license": "Apache-2.0",
9
9
  "author": "",
10
- "main": "index.js",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "development": "./index.dev.js",
14
+ "default": "./index.js"
15
+ },
16
+ "./next.js": {
17
+ "development": "./next.dev.js",
18
+ "default": "./next.js"
19
+ }
20
+ },
11
21
  "files": [
12
22
  "**/*.d.ts",
13
23
  "**/*.js",
@@ -20,7 +30,15 @@
20
30
  ],
21
31
  "dependencies": {
22
32
  "@lit-labs/react": "^1.1.1",
23
- "@spectrum-web-components/icons": "0.31.0"
33
+ "@spectrum-web-components/icons": "^0.31.1-react.3+886f51591"
34
+ },
35
+ "peerDependencies": {
36
+ "next": "^13.4.1 || latest"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "next": {
40
+ "optional": true
41
+ }
24
42
  },
25
- "gitHead": "a30eeed27948a9a372b792b751f968c54337ab9e"
43
+ "gitHead": "886f515919ca0e8a1cec52a00babb1d4a195ae01"
26
44
  }