@miden-sdk/miden-wallet-adapter-reactui 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/dist/Button.d.ts +15 -0
  2. package/dist/Button.js +5 -0
  3. package/dist/Button.js.map +1 -0
  4. package/dist/Collapse.d.ts +6 -0
  5. package/dist/Collapse.js +61 -0
  6. package/dist/Collapse.js.map +1 -0
  7. package/dist/DiscoverMidenMessage.d.ts +1 -0
  8. package/dist/DiscoverMidenMessage.js +6 -0
  9. package/dist/DiscoverMidenMessage.js.map +1 -0
  10. package/dist/MidenSVG.d.ts +2 -0
  11. package/dist/MidenSVG.js +5 -0
  12. package/dist/MidenSVG.js.map +1 -0
  13. package/dist/WalletConnectButton.d.ts +3 -0
  14. package/dist/WalletConnectButton.js +29 -0
  15. package/dist/WalletConnectButton.js.map +1 -0
  16. package/dist/WalletDisconnectButton.d.ts +3 -0
  17. package/dist/WalletDisconnectButton.js +26 -0
  18. package/dist/WalletDisconnectButton.js.map +1 -0
  19. package/dist/WalletIcon.d.ts +6 -0
  20. package/dist/WalletIcon.js +5 -0
  21. package/dist/WalletIcon.js.map +1 -0
  22. package/dist/WalletListItem.d.ts +8 -0
  23. package/dist/WalletListItem.js +8 -0
  24. package/dist/WalletListItem.js.map +1 -0
  25. package/dist/WalletModal.d.ts +10 -0
  26. package/dist/WalletModal.js +115 -0
  27. package/dist/WalletModal.js.map +1 -0
  28. package/dist/WalletModalButton.d.ts +3 -0
  29. package/dist/WalletModalButton.js +15 -0
  30. package/dist/WalletModalButton.js.map +1 -0
  31. package/dist/WalletModalProvider.d.ts +6 -0
  32. package/dist/WalletModalProvider.js +12 -0
  33. package/dist/WalletModalProvider.js.map +1 -0
  34. package/dist/WalletMultiButton.d.ts +3 -0
  35. package/dist/WalletMultiButton.js +70 -0
  36. package/dist/WalletMultiButton.js.map +1 -0
  37. package/dist/index.d.ts +8 -0
  38. package/dist/index.js +9 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/styles.css +359 -0
  41. package/dist/useWalletModal.d.ts +6 -0
  42. package/dist/useWalletModal.js +26 -0
  43. package/dist/useWalletModal.js.map +1 -0
  44. package/docs/README.md +27 -0
  45. package/docs/functions/useWalletModal.md +13 -0
  46. package/docs/interfaces/WalletIconProps.md +3222 -0
  47. package/docs/interfaces/WalletModalContextState.md +29 -0
  48. package/docs/interfaces/WalletModalProps.md +41 -0
  49. package/docs/interfaces/WalletModalProviderProps.md +67 -0
  50. package/docs/variables/WalletConnectButton.md +9 -0
  51. package/docs/variables/WalletDisconnectButton.md +9 -0
  52. package/docs/variables/WalletIcon.md +9 -0
  53. package/docs/variables/WalletModal.md +9 -0
  54. package/docs/variables/WalletModalButton.md +9 -0
  55. package/docs/variables/WalletModalContext.md +9 -0
  56. package/docs/variables/WalletModalProvider.md +9 -0
  57. package/docs/variables/WalletMultiButton.md +9 -0
  58. package/package.json +35 -0
  59. package/src/Button.tsx +46 -0
  60. package/src/Collapse.tsx +83 -0
  61. package/src/DiscoverMidenMessage.tsx +17 -0
  62. package/src/MidenSVG.tsx +21 -0
  63. package/src/WalletConnectButton.tsx +53 -0
  64. package/src/WalletDisconnectButton.tsx +43 -0
  65. package/src/WalletIcon.tsx +22 -0
  66. package/src/WalletListItem.tsx +46 -0
  67. package/src/WalletModal.tsx +281 -0
  68. package/src/WalletModalButton.tsx +23 -0
  69. package/src/WalletModalProvider.tsx +25 -0
  70. package/src/WalletMultiButton.tsx +130 -0
  71. package/src/aleo.svg +250 -0
  72. package/src/index.ts +8 -0
  73. package/src/useWalletModal.tsx +36 -0
  74. package/styles.css +359 -0
  75. package/tsconfig.json +32 -0
  76. package/yarn-error.log +525 -0
@@ -0,0 +1,3222 @@
1
+ [**@miden-sdk/miden-wallet-adapter-reactui**](../README.md)
2
+
3
+ ***
4
+
5
+ [@miden-sdk/miden-wallet-adapter-reactui](../README.md) / WalletIconProps
6
+
7
+ # Interface: WalletIconProps
8
+
9
+ ## Extends
10
+
11
+ - `DetailedHTMLProps`\<`ImgHTMLAttributes`\<`HTMLImageElement`\>, `HTMLImageElement`\>
12
+
13
+ ## Properties
14
+
15
+ ### about?
16
+
17
+ > `optional` **about**: `string`
18
+
19
+ #### Inherited from
20
+
21
+ `DetailedHTMLProps.about`
22
+
23
+ ***
24
+
25
+ ### accessKey?
26
+
27
+ > `optional` **accessKey**: `string`
28
+
29
+ #### Inherited from
30
+
31
+ `DetailedHTMLProps.accessKey`
32
+
33
+ ***
34
+
35
+ ### alt?
36
+
37
+ > `optional` **alt**: `string`
38
+
39
+ #### Inherited from
40
+
41
+ `DetailedHTMLProps.alt`
42
+
43
+ ***
44
+
45
+ ### aria-activedescendant?
46
+
47
+ > `optional` **aria-activedescendant**: `string`
48
+
49
+ Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
50
+
51
+ #### Inherited from
52
+
53
+ `DetailedHTMLProps.aria-activedescendant`
54
+
55
+ ***
56
+
57
+ ### aria-atomic?
58
+
59
+ > `optional` **aria-atomic**: `Booleanish`
60
+
61
+ Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
62
+
63
+ #### Inherited from
64
+
65
+ `DetailedHTMLProps.aria-atomic`
66
+
67
+ ***
68
+
69
+ ### aria-autocomplete?
70
+
71
+ > `optional` **aria-autocomplete**: `"list"` \| `"none"` \| `"both"` \| `"inline"`
72
+
73
+ Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
74
+ presented if they are made.
75
+
76
+ #### Inherited from
77
+
78
+ `DetailedHTMLProps.aria-autocomplete`
79
+
80
+ ***
81
+
82
+ ### aria-braillelabel?
83
+
84
+ > `optional` **aria-braillelabel**: `string`
85
+
86
+ Defines a string value that labels the current element, which is intended to be converted into Braille.
87
+
88
+ #### See
89
+
90
+ aria-label.
91
+
92
+ #### Inherited from
93
+
94
+ `DetailedHTMLProps.aria-braillelabel`
95
+
96
+ ***
97
+
98
+ ### aria-brailleroledescription?
99
+
100
+ > `optional` **aria-brailleroledescription**: `string`
101
+
102
+ Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
103
+
104
+ #### See
105
+
106
+ aria-roledescription.
107
+
108
+ #### Inherited from
109
+
110
+ `DetailedHTMLProps.aria-brailleroledescription`
111
+
112
+ ***
113
+
114
+ ### aria-busy?
115
+
116
+ > `optional` **aria-busy**: `Booleanish`
117
+
118
+ #### Inherited from
119
+
120
+ `DetailedHTMLProps.aria-busy`
121
+
122
+ ***
123
+
124
+ ### aria-checked?
125
+
126
+ > `optional` **aria-checked**: `boolean` \| `"true"` \| `"false"` \| `"mixed"`
127
+
128
+ Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
129
+
130
+ #### See
131
+
132
+ - aria-pressed
133
+ - aria-selected.
134
+
135
+ #### Inherited from
136
+
137
+ `DetailedHTMLProps.aria-checked`
138
+
139
+ ***
140
+
141
+ ### aria-colcount?
142
+
143
+ > `optional` **aria-colcount**: `number`
144
+
145
+ Defines the total number of columns in a table, grid, or treegrid.
146
+
147
+ #### See
148
+
149
+ aria-colindex.
150
+
151
+ #### Inherited from
152
+
153
+ `DetailedHTMLProps.aria-colcount`
154
+
155
+ ***
156
+
157
+ ### aria-colindex?
158
+
159
+ > `optional` **aria-colindex**: `number`
160
+
161
+ Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
162
+
163
+ #### See
164
+
165
+ - aria-colcount
166
+ - aria-colspan.
167
+
168
+ #### Inherited from
169
+
170
+ `DetailedHTMLProps.aria-colindex`
171
+
172
+ ***
173
+
174
+ ### aria-colindextext?
175
+
176
+ > `optional` **aria-colindextext**: `string`
177
+
178
+ Defines a human readable text alternative of aria-colindex.
179
+
180
+ #### See
181
+
182
+ aria-rowindextext.
183
+
184
+ #### Inherited from
185
+
186
+ `DetailedHTMLProps.aria-colindextext`
187
+
188
+ ***
189
+
190
+ ### aria-colspan?
191
+
192
+ > `optional` **aria-colspan**: `number`
193
+
194
+ Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
195
+
196
+ #### See
197
+
198
+ - aria-colindex
199
+ - aria-rowspan.
200
+
201
+ #### Inherited from
202
+
203
+ `DetailedHTMLProps.aria-colspan`
204
+
205
+ ***
206
+
207
+ ### aria-controls?
208
+
209
+ > `optional` **aria-controls**: `string`
210
+
211
+ Identifies the element (or elements) whose contents or presence are controlled by the current element.
212
+
213
+ #### See
214
+
215
+ aria-owns.
216
+
217
+ #### Inherited from
218
+
219
+ `DetailedHTMLProps.aria-controls`
220
+
221
+ ***
222
+
223
+ ### aria-current?
224
+
225
+ > `optional` **aria-current**: `boolean` \| `"true"` \| `"false"` \| `"time"` \| `"page"` \| `"step"` \| `"location"` \| `"date"`
226
+
227
+ Indicates the element that represents the current item within a container or set of related elements.
228
+
229
+ #### Inherited from
230
+
231
+ `DetailedHTMLProps.aria-current`
232
+
233
+ ***
234
+
235
+ ### aria-describedby?
236
+
237
+ > `optional` **aria-describedby**: `string`
238
+
239
+ Identifies the element (or elements) that describes the object.
240
+
241
+ #### See
242
+
243
+ aria-labelledby
244
+
245
+ #### Inherited from
246
+
247
+ `DetailedHTMLProps.aria-describedby`
248
+
249
+ ***
250
+
251
+ ### aria-description?
252
+
253
+ > `optional` **aria-description**: `string`
254
+
255
+ Defines a string value that describes or annotates the current element.
256
+
257
+ #### See
258
+
259
+ related aria-describedby.
260
+
261
+ #### Inherited from
262
+
263
+ `DetailedHTMLProps.aria-description`
264
+
265
+ ***
266
+
267
+ ### aria-details?
268
+
269
+ > `optional` **aria-details**: `string`
270
+
271
+ Identifies the element that provides a detailed, extended description for the object.
272
+
273
+ #### See
274
+
275
+ aria-describedby.
276
+
277
+ #### Inherited from
278
+
279
+ `DetailedHTMLProps.aria-details`
280
+
281
+ ***
282
+
283
+ ### aria-disabled?
284
+
285
+ > `optional` **aria-disabled**: `Booleanish`
286
+
287
+ Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
288
+
289
+ #### See
290
+
291
+ - aria-hidden
292
+ - aria-readonly.
293
+
294
+ #### Inherited from
295
+
296
+ `DetailedHTMLProps.aria-disabled`
297
+
298
+ ***
299
+
300
+ ### ~~aria-dropeffect?~~
301
+
302
+ > `optional` **aria-dropeffect**: `"link"` \| `"copy"` \| `"none"` \| `"move"` \| `"execute"` \| `"popup"`
303
+
304
+ Indicates what functions can be performed when a dragged object is released on the drop target.
305
+
306
+ #### Deprecated
307
+
308
+ in ARIA 1.1
309
+
310
+ #### Inherited from
311
+
312
+ `DetailedHTMLProps.aria-dropeffect`
313
+
314
+ ***
315
+
316
+ ### aria-errormessage?
317
+
318
+ > `optional` **aria-errormessage**: `string`
319
+
320
+ Identifies the element that provides an error message for the object.
321
+
322
+ #### See
323
+
324
+ - aria-invalid
325
+ - aria-describedby.
326
+
327
+ #### Inherited from
328
+
329
+ `DetailedHTMLProps.aria-errormessage`
330
+
331
+ ***
332
+
333
+ ### aria-expanded?
334
+
335
+ > `optional` **aria-expanded**: `Booleanish`
336
+
337
+ Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
338
+
339
+ #### Inherited from
340
+
341
+ `DetailedHTMLProps.aria-expanded`
342
+
343
+ ***
344
+
345
+ ### aria-flowto?
346
+
347
+ > `optional` **aria-flowto**: `string`
348
+
349
+ Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
350
+ allows assistive technology to override the general default of reading in document source order.
351
+
352
+ #### Inherited from
353
+
354
+ `DetailedHTMLProps.aria-flowto`
355
+
356
+ ***
357
+
358
+ ### ~~aria-grabbed?~~
359
+
360
+ > `optional` **aria-grabbed**: `Booleanish`
361
+
362
+ Indicates an element's "grabbed" state in a drag-and-drop operation.
363
+
364
+ #### Deprecated
365
+
366
+ in ARIA 1.1
367
+
368
+ #### Inherited from
369
+
370
+ `DetailedHTMLProps.aria-grabbed`
371
+
372
+ ***
373
+
374
+ ### aria-haspopup?
375
+
376
+ > `optional` **aria-haspopup**: `boolean` \| `"dialog"` \| `"grid"` \| `"listbox"` \| `"menu"` \| `"tree"` \| `"true"` \| `"false"`
377
+
378
+ Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
379
+
380
+ #### Inherited from
381
+
382
+ `DetailedHTMLProps.aria-haspopup`
383
+
384
+ ***
385
+
386
+ ### aria-hidden?
387
+
388
+ > `optional` **aria-hidden**: `Booleanish`
389
+
390
+ Indicates whether the element is exposed to an accessibility API.
391
+
392
+ #### See
393
+
394
+ aria-disabled.
395
+
396
+ #### Inherited from
397
+
398
+ `DetailedHTMLProps.aria-hidden`
399
+
400
+ ***
401
+
402
+ ### aria-invalid?
403
+
404
+ > `optional` **aria-invalid**: `boolean` \| `"true"` \| `"false"` \| `"grammar"` \| `"spelling"`
405
+
406
+ Indicates the entered value does not conform to the format expected by the application.
407
+
408
+ #### See
409
+
410
+ aria-errormessage.
411
+
412
+ #### Inherited from
413
+
414
+ `DetailedHTMLProps.aria-invalid`
415
+
416
+ ***
417
+
418
+ ### aria-keyshortcuts?
419
+
420
+ > `optional` **aria-keyshortcuts**: `string`
421
+
422
+ Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
423
+
424
+ #### Inherited from
425
+
426
+ `DetailedHTMLProps.aria-keyshortcuts`
427
+
428
+ ***
429
+
430
+ ### aria-label?
431
+
432
+ > `optional` **aria-label**: `string`
433
+
434
+ Defines a string value that labels the current element.
435
+
436
+ #### See
437
+
438
+ aria-labelledby.
439
+
440
+ #### Inherited from
441
+
442
+ `DetailedHTMLProps.aria-label`
443
+
444
+ ***
445
+
446
+ ### aria-labelledby?
447
+
448
+ > `optional` **aria-labelledby**: `string`
449
+
450
+ Identifies the element (or elements) that labels the current element.
451
+
452
+ #### See
453
+
454
+ aria-describedby.
455
+
456
+ #### Inherited from
457
+
458
+ `DetailedHTMLProps.aria-labelledby`
459
+
460
+ ***
461
+
462
+ ### aria-level?
463
+
464
+ > `optional` **aria-level**: `number`
465
+
466
+ Defines the hierarchical level of an element within a structure.
467
+
468
+ #### Inherited from
469
+
470
+ `DetailedHTMLProps.aria-level`
471
+
472
+ ***
473
+
474
+ ### aria-live?
475
+
476
+ > `optional` **aria-live**: `"off"` \| `"assertive"` \| `"polite"`
477
+
478
+ Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
479
+
480
+ #### Inherited from
481
+
482
+ `DetailedHTMLProps.aria-live`
483
+
484
+ ***
485
+
486
+ ### aria-modal?
487
+
488
+ > `optional` **aria-modal**: `Booleanish`
489
+
490
+ Indicates whether an element is modal when displayed.
491
+
492
+ #### Inherited from
493
+
494
+ `DetailedHTMLProps.aria-modal`
495
+
496
+ ***
497
+
498
+ ### aria-multiline?
499
+
500
+ > `optional` **aria-multiline**: `Booleanish`
501
+
502
+ Indicates whether a text box accepts multiple lines of input or only a single line.
503
+
504
+ #### Inherited from
505
+
506
+ `DetailedHTMLProps.aria-multiline`
507
+
508
+ ***
509
+
510
+ ### aria-multiselectable?
511
+
512
+ > `optional` **aria-multiselectable**: `Booleanish`
513
+
514
+ Indicates that the user may select more than one item from the current selectable descendants.
515
+
516
+ #### Inherited from
517
+
518
+ `DetailedHTMLProps.aria-multiselectable`
519
+
520
+ ***
521
+
522
+ ### aria-orientation?
523
+
524
+ > `optional` **aria-orientation**: `"horizontal"` \| `"vertical"`
525
+
526
+ Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
527
+
528
+ #### Inherited from
529
+
530
+ `DetailedHTMLProps.aria-orientation`
531
+
532
+ ***
533
+
534
+ ### aria-owns?
535
+
536
+ > `optional` **aria-owns**: `string`
537
+
538
+ Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
539
+ between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
540
+
541
+ #### See
542
+
543
+ aria-controls.
544
+
545
+ #### Inherited from
546
+
547
+ `DetailedHTMLProps.aria-owns`
548
+
549
+ ***
550
+
551
+ ### aria-placeholder?
552
+
553
+ > `optional` **aria-placeholder**: `string`
554
+
555
+ Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
556
+ A hint could be a sample value or a brief description of the expected format.
557
+
558
+ #### Inherited from
559
+
560
+ `DetailedHTMLProps.aria-placeholder`
561
+
562
+ ***
563
+
564
+ ### aria-posinset?
565
+
566
+ > `optional` **aria-posinset**: `number`
567
+
568
+ Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
569
+
570
+ #### See
571
+
572
+ aria-setsize.
573
+
574
+ #### Inherited from
575
+
576
+ `DetailedHTMLProps.aria-posinset`
577
+
578
+ ***
579
+
580
+ ### aria-pressed?
581
+
582
+ > `optional` **aria-pressed**: `boolean` \| `"true"` \| `"false"` \| `"mixed"`
583
+
584
+ Indicates the current "pressed" state of toggle buttons.
585
+
586
+ #### See
587
+
588
+ - aria-checked
589
+ - aria-selected.
590
+
591
+ #### Inherited from
592
+
593
+ `DetailedHTMLProps.aria-pressed`
594
+
595
+ ***
596
+
597
+ ### aria-readonly?
598
+
599
+ > `optional` **aria-readonly**: `Booleanish`
600
+
601
+ Indicates that the element is not editable, but is otherwise operable.
602
+
603
+ #### See
604
+
605
+ aria-disabled.
606
+
607
+ #### Inherited from
608
+
609
+ `DetailedHTMLProps.aria-readonly`
610
+
611
+ ***
612
+
613
+ ### aria-relevant?
614
+
615
+ > `optional` **aria-relevant**: `"all"` \| `"text"` \| `"additions"` \| `"additions removals"` \| `"additions text"` \| `"removals"` \| `"removals additions"` \| `"removals text"` \| `"text additions"` \| `"text removals"`
616
+
617
+ Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
618
+
619
+ #### See
620
+
621
+ aria-atomic.
622
+
623
+ #### Inherited from
624
+
625
+ `DetailedHTMLProps.aria-relevant`
626
+
627
+ ***
628
+
629
+ ### aria-required?
630
+
631
+ > `optional` **aria-required**: `Booleanish`
632
+
633
+ Indicates that user input is required on the element before a form may be submitted.
634
+
635
+ #### Inherited from
636
+
637
+ `DetailedHTMLProps.aria-required`
638
+
639
+ ***
640
+
641
+ ### aria-roledescription?
642
+
643
+ > `optional` **aria-roledescription**: `string`
644
+
645
+ Defines a human-readable, author-localized description for the role of an element.
646
+
647
+ #### Inherited from
648
+
649
+ `DetailedHTMLProps.aria-roledescription`
650
+
651
+ ***
652
+
653
+ ### aria-rowcount?
654
+
655
+ > `optional` **aria-rowcount**: `number`
656
+
657
+ Defines the total number of rows in a table, grid, or treegrid.
658
+
659
+ #### See
660
+
661
+ aria-rowindex.
662
+
663
+ #### Inherited from
664
+
665
+ `DetailedHTMLProps.aria-rowcount`
666
+
667
+ ***
668
+
669
+ ### aria-rowindex?
670
+
671
+ > `optional` **aria-rowindex**: `number`
672
+
673
+ Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
674
+
675
+ #### See
676
+
677
+ - aria-rowcount
678
+ - aria-rowspan.
679
+
680
+ #### Inherited from
681
+
682
+ `DetailedHTMLProps.aria-rowindex`
683
+
684
+ ***
685
+
686
+ ### aria-rowindextext?
687
+
688
+ > `optional` **aria-rowindextext**: `string`
689
+
690
+ Defines a human readable text alternative of aria-rowindex.
691
+
692
+ #### See
693
+
694
+ aria-colindextext.
695
+
696
+ #### Inherited from
697
+
698
+ `DetailedHTMLProps.aria-rowindextext`
699
+
700
+ ***
701
+
702
+ ### aria-rowspan?
703
+
704
+ > `optional` **aria-rowspan**: `number`
705
+
706
+ Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
707
+
708
+ #### See
709
+
710
+ - aria-rowindex
711
+ - aria-colspan.
712
+
713
+ #### Inherited from
714
+
715
+ `DetailedHTMLProps.aria-rowspan`
716
+
717
+ ***
718
+
719
+ ### aria-selected?
720
+
721
+ > `optional` **aria-selected**: `Booleanish`
722
+
723
+ Indicates the current "selected" state of various widgets.
724
+
725
+ #### See
726
+
727
+ - aria-checked
728
+ - aria-pressed.
729
+
730
+ #### Inherited from
731
+
732
+ `DetailedHTMLProps.aria-selected`
733
+
734
+ ***
735
+
736
+ ### aria-setsize?
737
+
738
+ > `optional` **aria-setsize**: `number`
739
+
740
+ Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
741
+
742
+ #### See
743
+
744
+ aria-posinset.
745
+
746
+ #### Inherited from
747
+
748
+ `DetailedHTMLProps.aria-setsize`
749
+
750
+ ***
751
+
752
+ ### aria-sort?
753
+
754
+ > `optional` **aria-sort**: `"none"` \| `"ascending"` \| `"descending"` \| `"other"`
755
+
756
+ Indicates if items in a table or grid are sorted in ascending or descending order.
757
+
758
+ #### Inherited from
759
+
760
+ `DetailedHTMLProps.aria-sort`
761
+
762
+ ***
763
+
764
+ ### aria-valuemax?
765
+
766
+ > `optional` **aria-valuemax**: `number`
767
+
768
+ Defines the maximum allowed value for a range widget.
769
+
770
+ #### Inherited from
771
+
772
+ `DetailedHTMLProps.aria-valuemax`
773
+
774
+ ***
775
+
776
+ ### aria-valuemin?
777
+
778
+ > `optional` **aria-valuemin**: `number`
779
+
780
+ Defines the minimum allowed value for a range widget.
781
+
782
+ #### Inherited from
783
+
784
+ `DetailedHTMLProps.aria-valuemin`
785
+
786
+ ***
787
+
788
+ ### aria-valuenow?
789
+
790
+ > `optional` **aria-valuenow**: `number`
791
+
792
+ Defines the current value for a range widget.
793
+
794
+ #### See
795
+
796
+ aria-valuetext.
797
+
798
+ #### Inherited from
799
+
800
+ `DetailedHTMLProps.aria-valuenow`
801
+
802
+ ***
803
+
804
+ ### aria-valuetext?
805
+
806
+ > `optional` **aria-valuetext**: `string`
807
+
808
+ Defines the human readable text alternative of aria-valuenow for a range widget.
809
+
810
+ #### Inherited from
811
+
812
+ `DetailedHTMLProps.aria-valuetext`
813
+
814
+ ***
815
+
816
+ ### autoCapitalize?
817
+
818
+ > `optional` **autoCapitalize**: `"none"` \| `string` & `object` \| `"off"` \| `"on"` \| `"sentences"` \| `"words"` \| `"characters"`
819
+
820
+ #### Inherited from
821
+
822
+ `DetailedHTMLProps.autoCapitalize`
823
+
824
+ ***
825
+
826
+ ### autoCorrect?
827
+
828
+ > `optional` **autoCorrect**: `string`
829
+
830
+ #### Inherited from
831
+
832
+ `DetailedHTMLProps.autoCorrect`
833
+
834
+ ***
835
+
836
+ ### autoFocus?
837
+
838
+ > `optional` **autoFocus**: `boolean`
839
+
840
+ #### Inherited from
841
+
842
+ `DetailedHTMLProps.autoFocus`
843
+
844
+ ***
845
+
846
+ ### autoSave?
847
+
848
+ > `optional` **autoSave**: `string`
849
+
850
+ #### Inherited from
851
+
852
+ `DetailedHTMLProps.autoSave`
853
+
854
+ ***
855
+
856
+ ### children?
857
+
858
+ > `optional` **children**: `ReactNode`
859
+
860
+ #### Inherited from
861
+
862
+ `DetailedHTMLProps.children`
863
+
864
+ ***
865
+
866
+ ### className?
867
+
868
+ > `optional` **className**: `string`
869
+
870
+ #### Inherited from
871
+
872
+ `DetailedHTMLProps.className`
873
+
874
+ ***
875
+
876
+ ### color?
877
+
878
+ > `optional` **color**: `string`
879
+
880
+ #### Inherited from
881
+
882
+ `DetailedHTMLProps.color`
883
+
884
+ ***
885
+
886
+ ### content?
887
+
888
+ > `optional` **content**: `string`
889
+
890
+ #### Inherited from
891
+
892
+ `DetailedHTMLProps.content`
893
+
894
+ ***
895
+
896
+ ### contentEditable?
897
+
898
+ > `optional` **contentEditable**: `"inherit"` \| `Booleanish` \| `"plaintext-only"`
899
+
900
+ #### Inherited from
901
+
902
+ `DetailedHTMLProps.contentEditable`
903
+
904
+ ***
905
+
906
+ ### contextMenu?
907
+
908
+ > `optional` **contextMenu**: `string`
909
+
910
+ #### Inherited from
911
+
912
+ `DetailedHTMLProps.contextMenu`
913
+
914
+ ***
915
+
916
+ ### crossOrigin?
917
+
918
+ > `optional` **crossOrigin**: `CrossOrigin`
919
+
920
+ #### Inherited from
921
+
922
+ `DetailedHTMLProps.crossOrigin`
923
+
924
+ ***
925
+
926
+ ### dangerouslySetInnerHTML?
927
+
928
+ > `optional` **dangerouslySetInnerHTML**: `object`
929
+
930
+ #### \_\_html
931
+
932
+ > **\_\_html**: `string` \| `TrustedHTML`
933
+
934
+ #### Inherited from
935
+
936
+ `DetailedHTMLProps.dangerouslySetInnerHTML`
937
+
938
+ ***
939
+
940
+ ### datatype?
941
+
942
+ > `optional` **datatype**: `string`
943
+
944
+ #### Inherited from
945
+
946
+ `DetailedHTMLProps.datatype`
947
+
948
+ ***
949
+
950
+ ### decoding?
951
+
952
+ > `optional` **decoding**: `"auto"` \| `"async"` \| `"sync"`
953
+
954
+ #### Inherited from
955
+
956
+ `DetailedHTMLProps.decoding`
957
+
958
+ ***
959
+
960
+ ### defaultChecked?
961
+
962
+ > `optional` **defaultChecked**: `boolean`
963
+
964
+ #### Inherited from
965
+
966
+ `DetailedHTMLProps.defaultChecked`
967
+
968
+ ***
969
+
970
+ ### defaultValue?
971
+
972
+ > `optional` **defaultValue**: `string` \| `number` \| readonly `string`[]
973
+
974
+ #### Inherited from
975
+
976
+ `DetailedHTMLProps.defaultValue`
977
+
978
+ ***
979
+
980
+ ### dir?
981
+
982
+ > `optional` **dir**: `string`
983
+
984
+ #### Inherited from
985
+
986
+ `DetailedHTMLProps.dir`
987
+
988
+ ***
989
+
990
+ ### draggable?
991
+
992
+ > `optional` **draggable**: `Booleanish`
993
+
994
+ #### Inherited from
995
+
996
+ `DetailedHTMLProps.draggable`
997
+
998
+ ***
999
+
1000
+ ### enterKeyHint?
1001
+
1002
+ > `optional` **enterKeyHint**: `"search"` \| `"enter"` \| `"done"` \| `"go"` \| `"next"` \| `"previous"` \| `"send"`
1003
+
1004
+ #### Inherited from
1005
+
1006
+ `DetailedHTMLProps.enterKeyHint`
1007
+
1008
+ ***
1009
+
1010
+ ### exportparts?
1011
+
1012
+ > `optional` **exportparts**: `string`
1013
+
1014
+ #### See
1015
+
1016
+ [https://developer.mozilla.org/en-US/docs/Web/HTML/Global\_attributes/exportparts](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts)
1017
+
1018
+ #### Inherited from
1019
+
1020
+ `DetailedHTMLProps.exportparts`
1021
+
1022
+ ***
1023
+
1024
+ ### fetchPriority?
1025
+
1026
+ > `optional` **fetchPriority**: `"auto"` \| `"high"` \| `"low"`
1027
+
1028
+ #### Inherited from
1029
+
1030
+ `DetailedHTMLProps.fetchPriority`
1031
+
1032
+ ***
1033
+
1034
+ ### height?
1035
+
1036
+ > `optional` **height**: `string` \| `number`
1037
+
1038
+ #### Inherited from
1039
+
1040
+ `DetailedHTMLProps.height`
1041
+
1042
+ ***
1043
+
1044
+ ### hidden?
1045
+
1046
+ > `optional` **hidden**: `boolean`
1047
+
1048
+ #### Inherited from
1049
+
1050
+ `DetailedHTMLProps.hidden`
1051
+
1052
+ ***
1053
+
1054
+ ### id?
1055
+
1056
+ > `optional` **id**: `string`
1057
+
1058
+ #### Inherited from
1059
+
1060
+ `DetailedHTMLProps.id`
1061
+
1062
+ ***
1063
+
1064
+ ### inert?
1065
+
1066
+ > `optional` **inert**: `boolean`
1067
+
1068
+ #### See
1069
+
1070
+ https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert
1071
+
1072
+ #### Inherited from
1073
+
1074
+ `DetailedHTMLProps.inert`
1075
+
1076
+ ***
1077
+
1078
+ ### inlist?
1079
+
1080
+ > `optional` **inlist**: `any`
1081
+
1082
+ #### Inherited from
1083
+
1084
+ `DetailedHTMLProps.inlist`
1085
+
1086
+ ***
1087
+
1088
+ ### inputMode?
1089
+
1090
+ > `optional` **inputMode**: `"search"` \| `"none"` \| `"text"` \| `"tel"` \| `"url"` \| `"email"` \| `"numeric"` \| `"decimal"`
1091
+
1092
+ Hints at the type of data that might be entered by the user while editing the element or its contents
1093
+
1094
+ #### See
1095
+
1096
+ [https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute)
1097
+
1098
+ #### Inherited from
1099
+
1100
+ `DetailedHTMLProps.inputMode`
1101
+
1102
+ ***
1103
+
1104
+ ### is?
1105
+
1106
+ > `optional` **is**: `string`
1107
+
1108
+ Specify that a standard HTML element should behave like a defined custom built-in element
1109
+
1110
+ #### See
1111
+
1112
+ [https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is](https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is)
1113
+
1114
+ #### Inherited from
1115
+
1116
+ `DetailedHTMLProps.is`
1117
+
1118
+ ***
1119
+
1120
+ ### itemID?
1121
+
1122
+ > `optional` **itemID**: `string`
1123
+
1124
+ #### Inherited from
1125
+
1126
+ `DetailedHTMLProps.itemID`
1127
+
1128
+ ***
1129
+
1130
+ ### itemProp?
1131
+
1132
+ > `optional` **itemProp**: `string`
1133
+
1134
+ #### Inherited from
1135
+
1136
+ `DetailedHTMLProps.itemProp`
1137
+
1138
+ ***
1139
+
1140
+ ### itemRef?
1141
+
1142
+ > `optional` **itemRef**: `string`
1143
+
1144
+ #### Inherited from
1145
+
1146
+ `DetailedHTMLProps.itemRef`
1147
+
1148
+ ***
1149
+
1150
+ ### itemScope?
1151
+
1152
+ > `optional` **itemScope**: `boolean`
1153
+
1154
+ #### Inherited from
1155
+
1156
+ `DetailedHTMLProps.itemScope`
1157
+
1158
+ ***
1159
+
1160
+ ### itemType?
1161
+
1162
+ > `optional` **itemType**: `string`
1163
+
1164
+ #### Inherited from
1165
+
1166
+ `DetailedHTMLProps.itemType`
1167
+
1168
+ ***
1169
+
1170
+ ### key?
1171
+
1172
+ > `optional` **key**: `null` \| `Key`
1173
+
1174
+ #### Inherited from
1175
+
1176
+ `DetailedHTMLProps.key`
1177
+
1178
+ ***
1179
+
1180
+ ### lang?
1181
+
1182
+ > `optional` **lang**: `string`
1183
+
1184
+ #### Inherited from
1185
+
1186
+ `DetailedHTMLProps.lang`
1187
+
1188
+ ***
1189
+
1190
+ ### loading?
1191
+
1192
+ > `optional` **loading**: `"eager"` \| `"lazy"`
1193
+
1194
+ #### Inherited from
1195
+
1196
+ `DetailedHTMLProps.loading`
1197
+
1198
+ ***
1199
+
1200
+ ### nonce?
1201
+
1202
+ > `optional` **nonce**: `string`
1203
+
1204
+ #### Inherited from
1205
+
1206
+ `DetailedHTMLProps.nonce`
1207
+
1208
+ ***
1209
+
1210
+ ### onAbort?
1211
+
1212
+ > `optional` **onAbort**: `ReactEventHandler`\<`HTMLImageElement`\>
1213
+
1214
+ #### Inherited from
1215
+
1216
+ `DetailedHTMLProps.onAbort`
1217
+
1218
+ ***
1219
+
1220
+ ### onAbortCapture?
1221
+
1222
+ > `optional` **onAbortCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1223
+
1224
+ #### Inherited from
1225
+
1226
+ `DetailedHTMLProps.onAbortCapture`
1227
+
1228
+ ***
1229
+
1230
+ ### onAnimationEnd?
1231
+
1232
+ > `optional` **onAnimationEnd**: `AnimationEventHandler`\<`HTMLImageElement`\>
1233
+
1234
+ #### Inherited from
1235
+
1236
+ `DetailedHTMLProps.onAnimationEnd`
1237
+
1238
+ ***
1239
+
1240
+ ### onAnimationEndCapture?
1241
+
1242
+ > `optional` **onAnimationEndCapture**: `AnimationEventHandler`\<`HTMLImageElement`\>
1243
+
1244
+ #### Inherited from
1245
+
1246
+ `DetailedHTMLProps.onAnimationEndCapture`
1247
+
1248
+ ***
1249
+
1250
+ ### onAnimationIteration?
1251
+
1252
+ > `optional` **onAnimationIteration**: `AnimationEventHandler`\<`HTMLImageElement`\>
1253
+
1254
+ #### Inherited from
1255
+
1256
+ `DetailedHTMLProps.onAnimationIteration`
1257
+
1258
+ ***
1259
+
1260
+ ### onAnimationIterationCapture?
1261
+
1262
+ > `optional` **onAnimationIterationCapture**: `AnimationEventHandler`\<`HTMLImageElement`\>
1263
+
1264
+ #### Inherited from
1265
+
1266
+ `DetailedHTMLProps.onAnimationIterationCapture`
1267
+
1268
+ ***
1269
+
1270
+ ### onAnimationStart?
1271
+
1272
+ > `optional` **onAnimationStart**: `AnimationEventHandler`\<`HTMLImageElement`\>
1273
+
1274
+ #### Inherited from
1275
+
1276
+ `DetailedHTMLProps.onAnimationStart`
1277
+
1278
+ ***
1279
+
1280
+ ### onAnimationStartCapture?
1281
+
1282
+ > `optional` **onAnimationStartCapture**: `AnimationEventHandler`\<`HTMLImageElement`\>
1283
+
1284
+ #### Inherited from
1285
+
1286
+ `DetailedHTMLProps.onAnimationStartCapture`
1287
+
1288
+ ***
1289
+
1290
+ ### onAuxClick?
1291
+
1292
+ > `optional` **onAuxClick**: `MouseEventHandler`\<`HTMLImageElement`\>
1293
+
1294
+ #### Inherited from
1295
+
1296
+ `DetailedHTMLProps.onAuxClick`
1297
+
1298
+ ***
1299
+
1300
+ ### onAuxClickCapture?
1301
+
1302
+ > `optional` **onAuxClickCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
1303
+
1304
+ #### Inherited from
1305
+
1306
+ `DetailedHTMLProps.onAuxClickCapture`
1307
+
1308
+ ***
1309
+
1310
+ ### onBeforeInput?
1311
+
1312
+ > `optional` **onBeforeInput**: `InputEventHandler`\<`HTMLImageElement`\>
1313
+
1314
+ #### Inherited from
1315
+
1316
+ `DetailedHTMLProps.onBeforeInput`
1317
+
1318
+ ***
1319
+
1320
+ ### onBeforeInputCapture?
1321
+
1322
+ > `optional` **onBeforeInputCapture**: `FormEventHandler`\<`HTMLImageElement`\>
1323
+
1324
+ #### Inherited from
1325
+
1326
+ `DetailedHTMLProps.onBeforeInputCapture`
1327
+
1328
+ ***
1329
+
1330
+ ### onBeforeToggle?
1331
+
1332
+ > `optional` **onBeforeToggle**: `ToggleEventHandler`\<`HTMLImageElement`\>
1333
+
1334
+ #### Inherited from
1335
+
1336
+ `DetailedHTMLProps.onBeforeToggle`
1337
+
1338
+ ***
1339
+
1340
+ ### onBlur?
1341
+
1342
+ > `optional` **onBlur**: `FocusEventHandler`\<`HTMLImageElement`\>
1343
+
1344
+ #### Inherited from
1345
+
1346
+ `DetailedHTMLProps.onBlur`
1347
+
1348
+ ***
1349
+
1350
+ ### onBlurCapture?
1351
+
1352
+ > `optional` **onBlurCapture**: `FocusEventHandler`\<`HTMLImageElement`\>
1353
+
1354
+ #### Inherited from
1355
+
1356
+ `DetailedHTMLProps.onBlurCapture`
1357
+
1358
+ ***
1359
+
1360
+ ### onCanPlay?
1361
+
1362
+ > `optional` **onCanPlay**: `ReactEventHandler`\<`HTMLImageElement`\>
1363
+
1364
+ #### Inherited from
1365
+
1366
+ `DetailedHTMLProps.onCanPlay`
1367
+
1368
+ ***
1369
+
1370
+ ### onCanPlayCapture?
1371
+
1372
+ > `optional` **onCanPlayCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1373
+
1374
+ #### Inherited from
1375
+
1376
+ `DetailedHTMLProps.onCanPlayCapture`
1377
+
1378
+ ***
1379
+
1380
+ ### onCanPlayThrough?
1381
+
1382
+ > `optional` **onCanPlayThrough**: `ReactEventHandler`\<`HTMLImageElement`\>
1383
+
1384
+ #### Inherited from
1385
+
1386
+ `DetailedHTMLProps.onCanPlayThrough`
1387
+
1388
+ ***
1389
+
1390
+ ### onCanPlayThroughCapture?
1391
+
1392
+ > `optional` **onCanPlayThroughCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1393
+
1394
+ #### Inherited from
1395
+
1396
+ `DetailedHTMLProps.onCanPlayThroughCapture`
1397
+
1398
+ ***
1399
+
1400
+ ### onChange?
1401
+
1402
+ > `optional` **onChange**: `FormEventHandler`\<`HTMLImageElement`\>
1403
+
1404
+ #### Inherited from
1405
+
1406
+ `DetailedHTMLProps.onChange`
1407
+
1408
+ ***
1409
+
1410
+ ### onChangeCapture?
1411
+
1412
+ > `optional` **onChangeCapture**: `FormEventHandler`\<`HTMLImageElement`\>
1413
+
1414
+ #### Inherited from
1415
+
1416
+ `DetailedHTMLProps.onChangeCapture`
1417
+
1418
+ ***
1419
+
1420
+ ### onClick?
1421
+
1422
+ > `optional` **onClick**: `MouseEventHandler`\<`HTMLImageElement`\>
1423
+
1424
+ #### Inherited from
1425
+
1426
+ `DetailedHTMLProps.onClick`
1427
+
1428
+ ***
1429
+
1430
+ ### onClickCapture?
1431
+
1432
+ > `optional` **onClickCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
1433
+
1434
+ #### Inherited from
1435
+
1436
+ `DetailedHTMLProps.onClickCapture`
1437
+
1438
+ ***
1439
+
1440
+ ### onCompositionEnd?
1441
+
1442
+ > `optional` **onCompositionEnd**: `CompositionEventHandler`\<`HTMLImageElement`\>
1443
+
1444
+ #### Inherited from
1445
+
1446
+ `DetailedHTMLProps.onCompositionEnd`
1447
+
1448
+ ***
1449
+
1450
+ ### onCompositionEndCapture?
1451
+
1452
+ > `optional` **onCompositionEndCapture**: `CompositionEventHandler`\<`HTMLImageElement`\>
1453
+
1454
+ #### Inherited from
1455
+
1456
+ `DetailedHTMLProps.onCompositionEndCapture`
1457
+
1458
+ ***
1459
+
1460
+ ### onCompositionStart?
1461
+
1462
+ > `optional` **onCompositionStart**: `CompositionEventHandler`\<`HTMLImageElement`\>
1463
+
1464
+ #### Inherited from
1465
+
1466
+ `DetailedHTMLProps.onCompositionStart`
1467
+
1468
+ ***
1469
+
1470
+ ### onCompositionStartCapture?
1471
+
1472
+ > `optional` **onCompositionStartCapture**: `CompositionEventHandler`\<`HTMLImageElement`\>
1473
+
1474
+ #### Inherited from
1475
+
1476
+ `DetailedHTMLProps.onCompositionStartCapture`
1477
+
1478
+ ***
1479
+
1480
+ ### onCompositionUpdate?
1481
+
1482
+ > `optional` **onCompositionUpdate**: `CompositionEventHandler`\<`HTMLImageElement`\>
1483
+
1484
+ #### Inherited from
1485
+
1486
+ `DetailedHTMLProps.onCompositionUpdate`
1487
+
1488
+ ***
1489
+
1490
+ ### onCompositionUpdateCapture?
1491
+
1492
+ > `optional` **onCompositionUpdateCapture**: `CompositionEventHandler`\<`HTMLImageElement`\>
1493
+
1494
+ #### Inherited from
1495
+
1496
+ `DetailedHTMLProps.onCompositionUpdateCapture`
1497
+
1498
+ ***
1499
+
1500
+ ### onContextMenu?
1501
+
1502
+ > `optional` **onContextMenu**: `MouseEventHandler`\<`HTMLImageElement`\>
1503
+
1504
+ #### Inherited from
1505
+
1506
+ `DetailedHTMLProps.onContextMenu`
1507
+
1508
+ ***
1509
+
1510
+ ### onContextMenuCapture?
1511
+
1512
+ > `optional` **onContextMenuCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
1513
+
1514
+ #### Inherited from
1515
+
1516
+ `DetailedHTMLProps.onContextMenuCapture`
1517
+
1518
+ ***
1519
+
1520
+ ### onCopy?
1521
+
1522
+ > `optional` **onCopy**: `ClipboardEventHandler`\<`HTMLImageElement`\>
1523
+
1524
+ #### Inherited from
1525
+
1526
+ `DetailedHTMLProps.onCopy`
1527
+
1528
+ ***
1529
+
1530
+ ### onCopyCapture?
1531
+
1532
+ > `optional` **onCopyCapture**: `ClipboardEventHandler`\<`HTMLImageElement`\>
1533
+
1534
+ #### Inherited from
1535
+
1536
+ `DetailedHTMLProps.onCopyCapture`
1537
+
1538
+ ***
1539
+
1540
+ ### onCut?
1541
+
1542
+ > `optional` **onCut**: `ClipboardEventHandler`\<`HTMLImageElement`\>
1543
+
1544
+ #### Inherited from
1545
+
1546
+ `DetailedHTMLProps.onCut`
1547
+
1548
+ ***
1549
+
1550
+ ### onCutCapture?
1551
+
1552
+ > `optional` **onCutCapture**: `ClipboardEventHandler`\<`HTMLImageElement`\>
1553
+
1554
+ #### Inherited from
1555
+
1556
+ `DetailedHTMLProps.onCutCapture`
1557
+
1558
+ ***
1559
+
1560
+ ### onDoubleClick?
1561
+
1562
+ > `optional` **onDoubleClick**: `MouseEventHandler`\<`HTMLImageElement`\>
1563
+
1564
+ #### Inherited from
1565
+
1566
+ `DetailedHTMLProps.onDoubleClick`
1567
+
1568
+ ***
1569
+
1570
+ ### onDoubleClickCapture?
1571
+
1572
+ > `optional` **onDoubleClickCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
1573
+
1574
+ #### Inherited from
1575
+
1576
+ `DetailedHTMLProps.onDoubleClickCapture`
1577
+
1578
+ ***
1579
+
1580
+ ### onDrag?
1581
+
1582
+ > `optional` **onDrag**: `DragEventHandler`\<`HTMLImageElement`\>
1583
+
1584
+ #### Inherited from
1585
+
1586
+ `DetailedHTMLProps.onDrag`
1587
+
1588
+ ***
1589
+
1590
+ ### onDragCapture?
1591
+
1592
+ > `optional` **onDragCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1593
+
1594
+ #### Inherited from
1595
+
1596
+ `DetailedHTMLProps.onDragCapture`
1597
+
1598
+ ***
1599
+
1600
+ ### onDragEnd?
1601
+
1602
+ > `optional` **onDragEnd**: `DragEventHandler`\<`HTMLImageElement`\>
1603
+
1604
+ #### Inherited from
1605
+
1606
+ `DetailedHTMLProps.onDragEnd`
1607
+
1608
+ ***
1609
+
1610
+ ### onDragEndCapture?
1611
+
1612
+ > `optional` **onDragEndCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1613
+
1614
+ #### Inherited from
1615
+
1616
+ `DetailedHTMLProps.onDragEndCapture`
1617
+
1618
+ ***
1619
+
1620
+ ### onDragEnter?
1621
+
1622
+ > `optional` **onDragEnter**: `DragEventHandler`\<`HTMLImageElement`\>
1623
+
1624
+ #### Inherited from
1625
+
1626
+ `DetailedHTMLProps.onDragEnter`
1627
+
1628
+ ***
1629
+
1630
+ ### onDragEnterCapture?
1631
+
1632
+ > `optional` **onDragEnterCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1633
+
1634
+ #### Inherited from
1635
+
1636
+ `DetailedHTMLProps.onDragEnterCapture`
1637
+
1638
+ ***
1639
+
1640
+ ### onDragExit?
1641
+
1642
+ > `optional` **onDragExit**: `DragEventHandler`\<`HTMLImageElement`\>
1643
+
1644
+ #### Inherited from
1645
+
1646
+ `DetailedHTMLProps.onDragExit`
1647
+
1648
+ ***
1649
+
1650
+ ### onDragExitCapture?
1651
+
1652
+ > `optional` **onDragExitCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1653
+
1654
+ #### Inherited from
1655
+
1656
+ `DetailedHTMLProps.onDragExitCapture`
1657
+
1658
+ ***
1659
+
1660
+ ### onDragLeave?
1661
+
1662
+ > `optional` **onDragLeave**: `DragEventHandler`\<`HTMLImageElement`\>
1663
+
1664
+ #### Inherited from
1665
+
1666
+ `DetailedHTMLProps.onDragLeave`
1667
+
1668
+ ***
1669
+
1670
+ ### onDragLeaveCapture?
1671
+
1672
+ > `optional` **onDragLeaveCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1673
+
1674
+ #### Inherited from
1675
+
1676
+ `DetailedHTMLProps.onDragLeaveCapture`
1677
+
1678
+ ***
1679
+
1680
+ ### onDragOver?
1681
+
1682
+ > `optional` **onDragOver**: `DragEventHandler`\<`HTMLImageElement`\>
1683
+
1684
+ #### Inherited from
1685
+
1686
+ `DetailedHTMLProps.onDragOver`
1687
+
1688
+ ***
1689
+
1690
+ ### onDragOverCapture?
1691
+
1692
+ > `optional` **onDragOverCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1693
+
1694
+ #### Inherited from
1695
+
1696
+ `DetailedHTMLProps.onDragOverCapture`
1697
+
1698
+ ***
1699
+
1700
+ ### onDragStart?
1701
+
1702
+ > `optional` **onDragStart**: `DragEventHandler`\<`HTMLImageElement`\>
1703
+
1704
+ #### Inherited from
1705
+
1706
+ `DetailedHTMLProps.onDragStart`
1707
+
1708
+ ***
1709
+
1710
+ ### onDragStartCapture?
1711
+
1712
+ > `optional` **onDragStartCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1713
+
1714
+ #### Inherited from
1715
+
1716
+ `DetailedHTMLProps.onDragStartCapture`
1717
+
1718
+ ***
1719
+
1720
+ ### onDrop?
1721
+
1722
+ > `optional` **onDrop**: `DragEventHandler`\<`HTMLImageElement`\>
1723
+
1724
+ #### Inherited from
1725
+
1726
+ `DetailedHTMLProps.onDrop`
1727
+
1728
+ ***
1729
+
1730
+ ### onDropCapture?
1731
+
1732
+ > `optional` **onDropCapture**: `DragEventHandler`\<`HTMLImageElement`\>
1733
+
1734
+ #### Inherited from
1735
+
1736
+ `DetailedHTMLProps.onDropCapture`
1737
+
1738
+ ***
1739
+
1740
+ ### onDurationChange?
1741
+
1742
+ > `optional` **onDurationChange**: `ReactEventHandler`\<`HTMLImageElement`\>
1743
+
1744
+ #### Inherited from
1745
+
1746
+ `DetailedHTMLProps.onDurationChange`
1747
+
1748
+ ***
1749
+
1750
+ ### onDurationChangeCapture?
1751
+
1752
+ > `optional` **onDurationChangeCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1753
+
1754
+ #### Inherited from
1755
+
1756
+ `DetailedHTMLProps.onDurationChangeCapture`
1757
+
1758
+ ***
1759
+
1760
+ ### onEmptied?
1761
+
1762
+ > `optional` **onEmptied**: `ReactEventHandler`\<`HTMLImageElement`\>
1763
+
1764
+ #### Inherited from
1765
+
1766
+ `DetailedHTMLProps.onEmptied`
1767
+
1768
+ ***
1769
+
1770
+ ### onEmptiedCapture?
1771
+
1772
+ > `optional` **onEmptiedCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1773
+
1774
+ #### Inherited from
1775
+
1776
+ `DetailedHTMLProps.onEmptiedCapture`
1777
+
1778
+ ***
1779
+
1780
+ ### onEncrypted?
1781
+
1782
+ > `optional` **onEncrypted**: `ReactEventHandler`\<`HTMLImageElement`\>
1783
+
1784
+ #### Inherited from
1785
+
1786
+ `DetailedHTMLProps.onEncrypted`
1787
+
1788
+ ***
1789
+
1790
+ ### onEncryptedCapture?
1791
+
1792
+ > `optional` **onEncryptedCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1793
+
1794
+ #### Inherited from
1795
+
1796
+ `DetailedHTMLProps.onEncryptedCapture`
1797
+
1798
+ ***
1799
+
1800
+ ### onEnded?
1801
+
1802
+ > `optional` **onEnded**: `ReactEventHandler`\<`HTMLImageElement`\>
1803
+
1804
+ #### Inherited from
1805
+
1806
+ `DetailedHTMLProps.onEnded`
1807
+
1808
+ ***
1809
+
1810
+ ### onEndedCapture?
1811
+
1812
+ > `optional` **onEndedCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1813
+
1814
+ #### Inherited from
1815
+
1816
+ `DetailedHTMLProps.onEndedCapture`
1817
+
1818
+ ***
1819
+
1820
+ ### onError?
1821
+
1822
+ > `optional` **onError**: `ReactEventHandler`\<`HTMLImageElement`\>
1823
+
1824
+ #### Inherited from
1825
+
1826
+ `DetailedHTMLProps.onError`
1827
+
1828
+ ***
1829
+
1830
+ ### onErrorCapture?
1831
+
1832
+ > `optional` **onErrorCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
1833
+
1834
+ #### Inherited from
1835
+
1836
+ `DetailedHTMLProps.onErrorCapture`
1837
+
1838
+ ***
1839
+
1840
+ ### onFocus?
1841
+
1842
+ > `optional` **onFocus**: `FocusEventHandler`\<`HTMLImageElement`\>
1843
+
1844
+ #### Inherited from
1845
+
1846
+ `DetailedHTMLProps.onFocus`
1847
+
1848
+ ***
1849
+
1850
+ ### onFocusCapture?
1851
+
1852
+ > `optional` **onFocusCapture**: `FocusEventHandler`\<`HTMLImageElement`\>
1853
+
1854
+ #### Inherited from
1855
+
1856
+ `DetailedHTMLProps.onFocusCapture`
1857
+
1858
+ ***
1859
+
1860
+ ### onGotPointerCapture?
1861
+
1862
+ > `optional` **onGotPointerCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
1863
+
1864
+ #### Inherited from
1865
+
1866
+ `DetailedHTMLProps.onGotPointerCapture`
1867
+
1868
+ ***
1869
+
1870
+ ### onGotPointerCaptureCapture?
1871
+
1872
+ > `optional` **onGotPointerCaptureCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
1873
+
1874
+ #### Inherited from
1875
+
1876
+ `DetailedHTMLProps.onGotPointerCaptureCapture`
1877
+
1878
+ ***
1879
+
1880
+ ### onInput?
1881
+
1882
+ > `optional` **onInput**: `FormEventHandler`\<`HTMLImageElement`\>
1883
+
1884
+ #### Inherited from
1885
+
1886
+ `DetailedHTMLProps.onInput`
1887
+
1888
+ ***
1889
+
1890
+ ### onInputCapture?
1891
+
1892
+ > `optional` **onInputCapture**: `FormEventHandler`\<`HTMLImageElement`\>
1893
+
1894
+ #### Inherited from
1895
+
1896
+ `DetailedHTMLProps.onInputCapture`
1897
+
1898
+ ***
1899
+
1900
+ ### onInvalid?
1901
+
1902
+ > `optional` **onInvalid**: `FormEventHandler`\<`HTMLImageElement`\>
1903
+
1904
+ #### Inherited from
1905
+
1906
+ `DetailedHTMLProps.onInvalid`
1907
+
1908
+ ***
1909
+
1910
+ ### onInvalidCapture?
1911
+
1912
+ > `optional` **onInvalidCapture**: `FormEventHandler`\<`HTMLImageElement`\>
1913
+
1914
+ #### Inherited from
1915
+
1916
+ `DetailedHTMLProps.onInvalidCapture`
1917
+
1918
+ ***
1919
+
1920
+ ### onKeyDown?
1921
+
1922
+ > `optional` **onKeyDown**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1923
+
1924
+ #### Inherited from
1925
+
1926
+ `DetailedHTMLProps.onKeyDown`
1927
+
1928
+ ***
1929
+
1930
+ ### onKeyDownCapture?
1931
+
1932
+ > `optional` **onKeyDownCapture**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1933
+
1934
+ #### Inherited from
1935
+
1936
+ `DetailedHTMLProps.onKeyDownCapture`
1937
+
1938
+ ***
1939
+
1940
+ ### ~~onKeyPress?~~
1941
+
1942
+ > `optional` **onKeyPress**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1943
+
1944
+ #### Deprecated
1945
+
1946
+ Use `onKeyUp` or `onKeyDown` instead
1947
+
1948
+ #### Inherited from
1949
+
1950
+ `DetailedHTMLProps.onKeyPress`
1951
+
1952
+ ***
1953
+
1954
+ ### ~~onKeyPressCapture?~~
1955
+
1956
+ > `optional` **onKeyPressCapture**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1957
+
1958
+ #### Deprecated
1959
+
1960
+ Use `onKeyUpCapture` or `onKeyDownCapture` instead
1961
+
1962
+ #### Inherited from
1963
+
1964
+ `DetailedHTMLProps.onKeyPressCapture`
1965
+
1966
+ ***
1967
+
1968
+ ### onKeyUp?
1969
+
1970
+ > `optional` **onKeyUp**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1971
+
1972
+ #### Inherited from
1973
+
1974
+ `DetailedHTMLProps.onKeyUp`
1975
+
1976
+ ***
1977
+
1978
+ ### onKeyUpCapture?
1979
+
1980
+ > `optional` **onKeyUpCapture**: `KeyboardEventHandler`\<`HTMLImageElement`\>
1981
+
1982
+ #### Inherited from
1983
+
1984
+ `DetailedHTMLProps.onKeyUpCapture`
1985
+
1986
+ ***
1987
+
1988
+ ### onLoad?
1989
+
1990
+ > `optional` **onLoad**: `ReactEventHandler`\<`HTMLImageElement`\>
1991
+
1992
+ #### Inherited from
1993
+
1994
+ `DetailedHTMLProps.onLoad`
1995
+
1996
+ ***
1997
+
1998
+ ### onLoadCapture?
1999
+
2000
+ > `optional` **onLoadCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2001
+
2002
+ #### Inherited from
2003
+
2004
+ `DetailedHTMLProps.onLoadCapture`
2005
+
2006
+ ***
2007
+
2008
+ ### onLoadedData?
2009
+
2010
+ > `optional` **onLoadedData**: `ReactEventHandler`\<`HTMLImageElement`\>
2011
+
2012
+ #### Inherited from
2013
+
2014
+ `DetailedHTMLProps.onLoadedData`
2015
+
2016
+ ***
2017
+
2018
+ ### onLoadedDataCapture?
2019
+
2020
+ > `optional` **onLoadedDataCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2021
+
2022
+ #### Inherited from
2023
+
2024
+ `DetailedHTMLProps.onLoadedDataCapture`
2025
+
2026
+ ***
2027
+
2028
+ ### onLoadedMetadata?
2029
+
2030
+ > `optional` **onLoadedMetadata**: `ReactEventHandler`\<`HTMLImageElement`\>
2031
+
2032
+ #### Inherited from
2033
+
2034
+ `DetailedHTMLProps.onLoadedMetadata`
2035
+
2036
+ ***
2037
+
2038
+ ### onLoadedMetadataCapture?
2039
+
2040
+ > `optional` **onLoadedMetadataCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2041
+
2042
+ #### Inherited from
2043
+
2044
+ `DetailedHTMLProps.onLoadedMetadataCapture`
2045
+
2046
+ ***
2047
+
2048
+ ### onLoadStart?
2049
+
2050
+ > `optional` **onLoadStart**: `ReactEventHandler`\<`HTMLImageElement`\>
2051
+
2052
+ #### Inherited from
2053
+
2054
+ `DetailedHTMLProps.onLoadStart`
2055
+
2056
+ ***
2057
+
2058
+ ### onLoadStartCapture?
2059
+
2060
+ > `optional` **onLoadStartCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2061
+
2062
+ #### Inherited from
2063
+
2064
+ `DetailedHTMLProps.onLoadStartCapture`
2065
+
2066
+ ***
2067
+
2068
+ ### onLostPointerCapture?
2069
+
2070
+ > `optional` **onLostPointerCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2071
+
2072
+ #### Inherited from
2073
+
2074
+ `DetailedHTMLProps.onLostPointerCapture`
2075
+
2076
+ ***
2077
+
2078
+ ### onLostPointerCaptureCapture?
2079
+
2080
+ > `optional` **onLostPointerCaptureCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2081
+
2082
+ #### Inherited from
2083
+
2084
+ `DetailedHTMLProps.onLostPointerCaptureCapture`
2085
+
2086
+ ***
2087
+
2088
+ ### onMouseDown?
2089
+
2090
+ > `optional` **onMouseDown**: `MouseEventHandler`\<`HTMLImageElement`\>
2091
+
2092
+ #### Inherited from
2093
+
2094
+ `DetailedHTMLProps.onMouseDown`
2095
+
2096
+ ***
2097
+
2098
+ ### onMouseDownCapture?
2099
+
2100
+ > `optional` **onMouseDownCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
2101
+
2102
+ #### Inherited from
2103
+
2104
+ `DetailedHTMLProps.onMouseDownCapture`
2105
+
2106
+ ***
2107
+
2108
+ ### onMouseEnter?
2109
+
2110
+ > `optional` **onMouseEnter**: `MouseEventHandler`\<`HTMLImageElement`\>
2111
+
2112
+ #### Inherited from
2113
+
2114
+ `DetailedHTMLProps.onMouseEnter`
2115
+
2116
+ ***
2117
+
2118
+ ### onMouseLeave?
2119
+
2120
+ > `optional` **onMouseLeave**: `MouseEventHandler`\<`HTMLImageElement`\>
2121
+
2122
+ #### Inherited from
2123
+
2124
+ `DetailedHTMLProps.onMouseLeave`
2125
+
2126
+ ***
2127
+
2128
+ ### onMouseMove?
2129
+
2130
+ > `optional` **onMouseMove**: `MouseEventHandler`\<`HTMLImageElement`\>
2131
+
2132
+ #### Inherited from
2133
+
2134
+ `DetailedHTMLProps.onMouseMove`
2135
+
2136
+ ***
2137
+
2138
+ ### onMouseMoveCapture?
2139
+
2140
+ > `optional` **onMouseMoveCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
2141
+
2142
+ #### Inherited from
2143
+
2144
+ `DetailedHTMLProps.onMouseMoveCapture`
2145
+
2146
+ ***
2147
+
2148
+ ### onMouseOut?
2149
+
2150
+ > `optional` **onMouseOut**: `MouseEventHandler`\<`HTMLImageElement`\>
2151
+
2152
+ #### Inherited from
2153
+
2154
+ `DetailedHTMLProps.onMouseOut`
2155
+
2156
+ ***
2157
+
2158
+ ### onMouseOutCapture?
2159
+
2160
+ > `optional` **onMouseOutCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
2161
+
2162
+ #### Inherited from
2163
+
2164
+ `DetailedHTMLProps.onMouseOutCapture`
2165
+
2166
+ ***
2167
+
2168
+ ### onMouseOver?
2169
+
2170
+ > `optional` **onMouseOver**: `MouseEventHandler`\<`HTMLImageElement`\>
2171
+
2172
+ #### Inherited from
2173
+
2174
+ `DetailedHTMLProps.onMouseOver`
2175
+
2176
+ ***
2177
+
2178
+ ### onMouseOverCapture?
2179
+
2180
+ > `optional` **onMouseOverCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
2181
+
2182
+ #### Inherited from
2183
+
2184
+ `DetailedHTMLProps.onMouseOverCapture`
2185
+
2186
+ ***
2187
+
2188
+ ### onMouseUp?
2189
+
2190
+ > `optional` **onMouseUp**: `MouseEventHandler`\<`HTMLImageElement`\>
2191
+
2192
+ #### Inherited from
2193
+
2194
+ `DetailedHTMLProps.onMouseUp`
2195
+
2196
+ ***
2197
+
2198
+ ### onMouseUpCapture?
2199
+
2200
+ > `optional` **onMouseUpCapture**: `MouseEventHandler`\<`HTMLImageElement`\>
2201
+
2202
+ #### Inherited from
2203
+
2204
+ `DetailedHTMLProps.onMouseUpCapture`
2205
+
2206
+ ***
2207
+
2208
+ ### onPaste?
2209
+
2210
+ > `optional` **onPaste**: `ClipboardEventHandler`\<`HTMLImageElement`\>
2211
+
2212
+ #### Inherited from
2213
+
2214
+ `DetailedHTMLProps.onPaste`
2215
+
2216
+ ***
2217
+
2218
+ ### onPasteCapture?
2219
+
2220
+ > `optional` **onPasteCapture**: `ClipboardEventHandler`\<`HTMLImageElement`\>
2221
+
2222
+ #### Inherited from
2223
+
2224
+ `DetailedHTMLProps.onPasteCapture`
2225
+
2226
+ ***
2227
+
2228
+ ### onPause?
2229
+
2230
+ > `optional` **onPause**: `ReactEventHandler`\<`HTMLImageElement`\>
2231
+
2232
+ #### Inherited from
2233
+
2234
+ `DetailedHTMLProps.onPause`
2235
+
2236
+ ***
2237
+
2238
+ ### onPauseCapture?
2239
+
2240
+ > `optional` **onPauseCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2241
+
2242
+ #### Inherited from
2243
+
2244
+ `DetailedHTMLProps.onPauseCapture`
2245
+
2246
+ ***
2247
+
2248
+ ### onPlay?
2249
+
2250
+ > `optional` **onPlay**: `ReactEventHandler`\<`HTMLImageElement`\>
2251
+
2252
+ #### Inherited from
2253
+
2254
+ `DetailedHTMLProps.onPlay`
2255
+
2256
+ ***
2257
+
2258
+ ### onPlayCapture?
2259
+
2260
+ > `optional` **onPlayCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2261
+
2262
+ #### Inherited from
2263
+
2264
+ `DetailedHTMLProps.onPlayCapture`
2265
+
2266
+ ***
2267
+
2268
+ ### onPlaying?
2269
+
2270
+ > `optional` **onPlaying**: `ReactEventHandler`\<`HTMLImageElement`\>
2271
+
2272
+ #### Inherited from
2273
+
2274
+ `DetailedHTMLProps.onPlaying`
2275
+
2276
+ ***
2277
+
2278
+ ### onPlayingCapture?
2279
+
2280
+ > `optional` **onPlayingCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2281
+
2282
+ #### Inherited from
2283
+
2284
+ `DetailedHTMLProps.onPlayingCapture`
2285
+
2286
+ ***
2287
+
2288
+ ### onPointerCancel?
2289
+
2290
+ > `optional` **onPointerCancel**: `PointerEventHandler`\<`HTMLImageElement`\>
2291
+
2292
+ #### Inherited from
2293
+
2294
+ `DetailedHTMLProps.onPointerCancel`
2295
+
2296
+ ***
2297
+
2298
+ ### onPointerCancelCapture?
2299
+
2300
+ > `optional` **onPointerCancelCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2301
+
2302
+ #### Inherited from
2303
+
2304
+ `DetailedHTMLProps.onPointerCancelCapture`
2305
+
2306
+ ***
2307
+
2308
+ ### onPointerDown?
2309
+
2310
+ > `optional` **onPointerDown**: `PointerEventHandler`\<`HTMLImageElement`\>
2311
+
2312
+ #### Inherited from
2313
+
2314
+ `DetailedHTMLProps.onPointerDown`
2315
+
2316
+ ***
2317
+
2318
+ ### onPointerDownCapture?
2319
+
2320
+ > `optional` **onPointerDownCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2321
+
2322
+ #### Inherited from
2323
+
2324
+ `DetailedHTMLProps.onPointerDownCapture`
2325
+
2326
+ ***
2327
+
2328
+ ### onPointerEnter?
2329
+
2330
+ > `optional` **onPointerEnter**: `PointerEventHandler`\<`HTMLImageElement`\>
2331
+
2332
+ #### Inherited from
2333
+
2334
+ `DetailedHTMLProps.onPointerEnter`
2335
+
2336
+ ***
2337
+
2338
+ ### onPointerLeave?
2339
+
2340
+ > `optional` **onPointerLeave**: `PointerEventHandler`\<`HTMLImageElement`\>
2341
+
2342
+ #### Inherited from
2343
+
2344
+ `DetailedHTMLProps.onPointerLeave`
2345
+
2346
+ ***
2347
+
2348
+ ### onPointerMove?
2349
+
2350
+ > `optional` **onPointerMove**: `PointerEventHandler`\<`HTMLImageElement`\>
2351
+
2352
+ #### Inherited from
2353
+
2354
+ `DetailedHTMLProps.onPointerMove`
2355
+
2356
+ ***
2357
+
2358
+ ### onPointerMoveCapture?
2359
+
2360
+ > `optional` **onPointerMoveCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2361
+
2362
+ #### Inherited from
2363
+
2364
+ `DetailedHTMLProps.onPointerMoveCapture`
2365
+
2366
+ ***
2367
+
2368
+ ### onPointerOut?
2369
+
2370
+ > `optional` **onPointerOut**: `PointerEventHandler`\<`HTMLImageElement`\>
2371
+
2372
+ #### Inherited from
2373
+
2374
+ `DetailedHTMLProps.onPointerOut`
2375
+
2376
+ ***
2377
+
2378
+ ### onPointerOutCapture?
2379
+
2380
+ > `optional` **onPointerOutCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2381
+
2382
+ #### Inherited from
2383
+
2384
+ `DetailedHTMLProps.onPointerOutCapture`
2385
+
2386
+ ***
2387
+
2388
+ ### onPointerOver?
2389
+
2390
+ > `optional` **onPointerOver**: `PointerEventHandler`\<`HTMLImageElement`\>
2391
+
2392
+ #### Inherited from
2393
+
2394
+ `DetailedHTMLProps.onPointerOver`
2395
+
2396
+ ***
2397
+
2398
+ ### onPointerOverCapture?
2399
+
2400
+ > `optional` **onPointerOverCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2401
+
2402
+ #### Inherited from
2403
+
2404
+ `DetailedHTMLProps.onPointerOverCapture`
2405
+
2406
+ ***
2407
+
2408
+ ### onPointerUp?
2409
+
2410
+ > `optional` **onPointerUp**: `PointerEventHandler`\<`HTMLImageElement`\>
2411
+
2412
+ #### Inherited from
2413
+
2414
+ `DetailedHTMLProps.onPointerUp`
2415
+
2416
+ ***
2417
+
2418
+ ### onPointerUpCapture?
2419
+
2420
+ > `optional` **onPointerUpCapture**: `PointerEventHandler`\<`HTMLImageElement`\>
2421
+
2422
+ #### Inherited from
2423
+
2424
+ `DetailedHTMLProps.onPointerUpCapture`
2425
+
2426
+ ***
2427
+
2428
+ ### onProgress?
2429
+
2430
+ > `optional` **onProgress**: `ReactEventHandler`\<`HTMLImageElement`\>
2431
+
2432
+ #### Inherited from
2433
+
2434
+ `DetailedHTMLProps.onProgress`
2435
+
2436
+ ***
2437
+
2438
+ ### onProgressCapture?
2439
+
2440
+ > `optional` **onProgressCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2441
+
2442
+ #### Inherited from
2443
+
2444
+ `DetailedHTMLProps.onProgressCapture`
2445
+
2446
+ ***
2447
+
2448
+ ### onRateChange?
2449
+
2450
+ > `optional` **onRateChange**: `ReactEventHandler`\<`HTMLImageElement`\>
2451
+
2452
+ #### Inherited from
2453
+
2454
+ `DetailedHTMLProps.onRateChange`
2455
+
2456
+ ***
2457
+
2458
+ ### onRateChangeCapture?
2459
+
2460
+ > `optional` **onRateChangeCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2461
+
2462
+ #### Inherited from
2463
+
2464
+ `DetailedHTMLProps.onRateChangeCapture`
2465
+
2466
+ ***
2467
+
2468
+ ### onReset?
2469
+
2470
+ > `optional` **onReset**: `FormEventHandler`\<`HTMLImageElement`\>
2471
+
2472
+ #### Inherited from
2473
+
2474
+ `DetailedHTMLProps.onReset`
2475
+
2476
+ ***
2477
+
2478
+ ### onResetCapture?
2479
+
2480
+ > `optional` **onResetCapture**: `FormEventHandler`\<`HTMLImageElement`\>
2481
+
2482
+ #### Inherited from
2483
+
2484
+ `DetailedHTMLProps.onResetCapture`
2485
+
2486
+ ***
2487
+
2488
+ ### onScroll?
2489
+
2490
+ > `optional` **onScroll**: `UIEventHandler`\<`HTMLImageElement`\>
2491
+
2492
+ #### Inherited from
2493
+
2494
+ `DetailedHTMLProps.onScroll`
2495
+
2496
+ ***
2497
+
2498
+ ### onScrollCapture?
2499
+
2500
+ > `optional` **onScrollCapture**: `UIEventHandler`\<`HTMLImageElement`\>
2501
+
2502
+ #### Inherited from
2503
+
2504
+ `DetailedHTMLProps.onScrollCapture`
2505
+
2506
+ ***
2507
+
2508
+ ### onScrollEnd?
2509
+
2510
+ > `optional` **onScrollEnd**: `UIEventHandler`\<`HTMLImageElement`\>
2511
+
2512
+ #### Inherited from
2513
+
2514
+ `DetailedHTMLProps.onScrollEnd`
2515
+
2516
+ ***
2517
+
2518
+ ### onScrollEndCapture?
2519
+
2520
+ > `optional` **onScrollEndCapture**: `UIEventHandler`\<`HTMLImageElement`\>
2521
+
2522
+ #### Inherited from
2523
+
2524
+ `DetailedHTMLProps.onScrollEndCapture`
2525
+
2526
+ ***
2527
+
2528
+ ### onSeeked?
2529
+
2530
+ > `optional` **onSeeked**: `ReactEventHandler`\<`HTMLImageElement`\>
2531
+
2532
+ #### Inherited from
2533
+
2534
+ `DetailedHTMLProps.onSeeked`
2535
+
2536
+ ***
2537
+
2538
+ ### onSeekedCapture?
2539
+
2540
+ > `optional` **onSeekedCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2541
+
2542
+ #### Inherited from
2543
+
2544
+ `DetailedHTMLProps.onSeekedCapture`
2545
+
2546
+ ***
2547
+
2548
+ ### onSeeking?
2549
+
2550
+ > `optional` **onSeeking**: `ReactEventHandler`\<`HTMLImageElement`\>
2551
+
2552
+ #### Inherited from
2553
+
2554
+ `DetailedHTMLProps.onSeeking`
2555
+
2556
+ ***
2557
+
2558
+ ### onSeekingCapture?
2559
+
2560
+ > `optional` **onSeekingCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2561
+
2562
+ #### Inherited from
2563
+
2564
+ `DetailedHTMLProps.onSeekingCapture`
2565
+
2566
+ ***
2567
+
2568
+ ### onSelect?
2569
+
2570
+ > `optional` **onSelect**: `ReactEventHandler`\<`HTMLImageElement`\>
2571
+
2572
+ #### Inherited from
2573
+
2574
+ `DetailedHTMLProps.onSelect`
2575
+
2576
+ ***
2577
+
2578
+ ### onSelectCapture?
2579
+
2580
+ > `optional` **onSelectCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2581
+
2582
+ #### Inherited from
2583
+
2584
+ `DetailedHTMLProps.onSelectCapture`
2585
+
2586
+ ***
2587
+
2588
+ ### onStalled?
2589
+
2590
+ > `optional` **onStalled**: `ReactEventHandler`\<`HTMLImageElement`\>
2591
+
2592
+ #### Inherited from
2593
+
2594
+ `DetailedHTMLProps.onStalled`
2595
+
2596
+ ***
2597
+
2598
+ ### onStalledCapture?
2599
+
2600
+ > `optional` **onStalledCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2601
+
2602
+ #### Inherited from
2603
+
2604
+ `DetailedHTMLProps.onStalledCapture`
2605
+
2606
+ ***
2607
+
2608
+ ### onSubmit?
2609
+
2610
+ > `optional` **onSubmit**: `FormEventHandler`\<`HTMLImageElement`\>
2611
+
2612
+ #### Inherited from
2613
+
2614
+ `DetailedHTMLProps.onSubmit`
2615
+
2616
+ ***
2617
+
2618
+ ### onSubmitCapture?
2619
+
2620
+ > `optional` **onSubmitCapture**: `FormEventHandler`\<`HTMLImageElement`\>
2621
+
2622
+ #### Inherited from
2623
+
2624
+ `DetailedHTMLProps.onSubmitCapture`
2625
+
2626
+ ***
2627
+
2628
+ ### onSuspend?
2629
+
2630
+ > `optional` **onSuspend**: `ReactEventHandler`\<`HTMLImageElement`\>
2631
+
2632
+ #### Inherited from
2633
+
2634
+ `DetailedHTMLProps.onSuspend`
2635
+
2636
+ ***
2637
+
2638
+ ### onSuspendCapture?
2639
+
2640
+ > `optional` **onSuspendCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2641
+
2642
+ #### Inherited from
2643
+
2644
+ `DetailedHTMLProps.onSuspendCapture`
2645
+
2646
+ ***
2647
+
2648
+ ### onTimeUpdate?
2649
+
2650
+ > `optional` **onTimeUpdate**: `ReactEventHandler`\<`HTMLImageElement`\>
2651
+
2652
+ #### Inherited from
2653
+
2654
+ `DetailedHTMLProps.onTimeUpdate`
2655
+
2656
+ ***
2657
+
2658
+ ### onTimeUpdateCapture?
2659
+
2660
+ > `optional` **onTimeUpdateCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2661
+
2662
+ #### Inherited from
2663
+
2664
+ `DetailedHTMLProps.onTimeUpdateCapture`
2665
+
2666
+ ***
2667
+
2668
+ ### onToggle?
2669
+
2670
+ > `optional` **onToggle**: `ToggleEventHandler`\<`HTMLImageElement`\>
2671
+
2672
+ #### Inherited from
2673
+
2674
+ `DetailedHTMLProps.onToggle`
2675
+
2676
+ ***
2677
+
2678
+ ### onTouchCancel?
2679
+
2680
+ > `optional` **onTouchCancel**: `TouchEventHandler`\<`HTMLImageElement`\>
2681
+
2682
+ #### Inherited from
2683
+
2684
+ `DetailedHTMLProps.onTouchCancel`
2685
+
2686
+ ***
2687
+
2688
+ ### onTouchCancelCapture?
2689
+
2690
+ > `optional` **onTouchCancelCapture**: `TouchEventHandler`\<`HTMLImageElement`\>
2691
+
2692
+ #### Inherited from
2693
+
2694
+ `DetailedHTMLProps.onTouchCancelCapture`
2695
+
2696
+ ***
2697
+
2698
+ ### onTouchEnd?
2699
+
2700
+ > `optional` **onTouchEnd**: `TouchEventHandler`\<`HTMLImageElement`\>
2701
+
2702
+ #### Inherited from
2703
+
2704
+ `DetailedHTMLProps.onTouchEnd`
2705
+
2706
+ ***
2707
+
2708
+ ### onTouchEndCapture?
2709
+
2710
+ > `optional` **onTouchEndCapture**: `TouchEventHandler`\<`HTMLImageElement`\>
2711
+
2712
+ #### Inherited from
2713
+
2714
+ `DetailedHTMLProps.onTouchEndCapture`
2715
+
2716
+ ***
2717
+
2718
+ ### onTouchMove?
2719
+
2720
+ > `optional` **onTouchMove**: `TouchEventHandler`\<`HTMLImageElement`\>
2721
+
2722
+ #### Inherited from
2723
+
2724
+ `DetailedHTMLProps.onTouchMove`
2725
+
2726
+ ***
2727
+
2728
+ ### onTouchMoveCapture?
2729
+
2730
+ > `optional` **onTouchMoveCapture**: `TouchEventHandler`\<`HTMLImageElement`\>
2731
+
2732
+ #### Inherited from
2733
+
2734
+ `DetailedHTMLProps.onTouchMoveCapture`
2735
+
2736
+ ***
2737
+
2738
+ ### onTouchStart?
2739
+
2740
+ > `optional` **onTouchStart**: `TouchEventHandler`\<`HTMLImageElement`\>
2741
+
2742
+ #### Inherited from
2743
+
2744
+ `DetailedHTMLProps.onTouchStart`
2745
+
2746
+ ***
2747
+
2748
+ ### onTouchStartCapture?
2749
+
2750
+ > `optional` **onTouchStartCapture**: `TouchEventHandler`\<`HTMLImageElement`\>
2751
+
2752
+ #### Inherited from
2753
+
2754
+ `DetailedHTMLProps.onTouchStartCapture`
2755
+
2756
+ ***
2757
+
2758
+ ### onTransitionCancel?
2759
+
2760
+ > `optional` **onTransitionCancel**: `TransitionEventHandler`\<`HTMLImageElement`\>
2761
+
2762
+ #### Inherited from
2763
+
2764
+ `DetailedHTMLProps.onTransitionCancel`
2765
+
2766
+ ***
2767
+
2768
+ ### onTransitionCancelCapture?
2769
+
2770
+ > `optional` **onTransitionCancelCapture**: `TransitionEventHandler`\<`HTMLImageElement`\>
2771
+
2772
+ #### Inherited from
2773
+
2774
+ `DetailedHTMLProps.onTransitionCancelCapture`
2775
+
2776
+ ***
2777
+
2778
+ ### onTransitionEnd?
2779
+
2780
+ > `optional` **onTransitionEnd**: `TransitionEventHandler`\<`HTMLImageElement`\>
2781
+
2782
+ #### Inherited from
2783
+
2784
+ `DetailedHTMLProps.onTransitionEnd`
2785
+
2786
+ ***
2787
+
2788
+ ### onTransitionEndCapture?
2789
+
2790
+ > `optional` **onTransitionEndCapture**: `TransitionEventHandler`\<`HTMLImageElement`\>
2791
+
2792
+ #### Inherited from
2793
+
2794
+ `DetailedHTMLProps.onTransitionEndCapture`
2795
+
2796
+ ***
2797
+
2798
+ ### onTransitionRun?
2799
+
2800
+ > `optional` **onTransitionRun**: `TransitionEventHandler`\<`HTMLImageElement`\>
2801
+
2802
+ #### Inherited from
2803
+
2804
+ `DetailedHTMLProps.onTransitionRun`
2805
+
2806
+ ***
2807
+
2808
+ ### onTransitionRunCapture?
2809
+
2810
+ > `optional` **onTransitionRunCapture**: `TransitionEventHandler`\<`HTMLImageElement`\>
2811
+
2812
+ #### Inherited from
2813
+
2814
+ `DetailedHTMLProps.onTransitionRunCapture`
2815
+
2816
+ ***
2817
+
2818
+ ### onTransitionStart?
2819
+
2820
+ > `optional` **onTransitionStart**: `TransitionEventHandler`\<`HTMLImageElement`\>
2821
+
2822
+ #### Inherited from
2823
+
2824
+ `DetailedHTMLProps.onTransitionStart`
2825
+
2826
+ ***
2827
+
2828
+ ### onTransitionStartCapture?
2829
+
2830
+ > `optional` **onTransitionStartCapture**: `TransitionEventHandler`\<`HTMLImageElement`\>
2831
+
2832
+ #### Inherited from
2833
+
2834
+ `DetailedHTMLProps.onTransitionStartCapture`
2835
+
2836
+ ***
2837
+
2838
+ ### onVolumeChange?
2839
+
2840
+ > `optional` **onVolumeChange**: `ReactEventHandler`\<`HTMLImageElement`\>
2841
+
2842
+ #### Inherited from
2843
+
2844
+ `DetailedHTMLProps.onVolumeChange`
2845
+
2846
+ ***
2847
+
2848
+ ### onVolumeChangeCapture?
2849
+
2850
+ > `optional` **onVolumeChangeCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2851
+
2852
+ #### Inherited from
2853
+
2854
+ `DetailedHTMLProps.onVolumeChangeCapture`
2855
+
2856
+ ***
2857
+
2858
+ ### onWaiting?
2859
+
2860
+ > `optional` **onWaiting**: `ReactEventHandler`\<`HTMLImageElement`\>
2861
+
2862
+ #### Inherited from
2863
+
2864
+ `DetailedHTMLProps.onWaiting`
2865
+
2866
+ ***
2867
+
2868
+ ### onWaitingCapture?
2869
+
2870
+ > `optional` **onWaitingCapture**: `ReactEventHandler`\<`HTMLImageElement`\>
2871
+
2872
+ #### Inherited from
2873
+
2874
+ `DetailedHTMLProps.onWaitingCapture`
2875
+
2876
+ ***
2877
+
2878
+ ### onWheel?
2879
+
2880
+ > `optional` **onWheel**: `WheelEventHandler`\<`HTMLImageElement`\>
2881
+
2882
+ #### Inherited from
2883
+
2884
+ `DetailedHTMLProps.onWheel`
2885
+
2886
+ ***
2887
+
2888
+ ### onWheelCapture?
2889
+
2890
+ > `optional` **onWheelCapture**: `WheelEventHandler`\<`HTMLImageElement`\>
2891
+
2892
+ #### Inherited from
2893
+
2894
+ `DetailedHTMLProps.onWheelCapture`
2895
+
2896
+ ***
2897
+
2898
+ ### part?
2899
+
2900
+ > `optional` **part**: `string`
2901
+
2902
+ #### See
2903
+
2904
+ [https://developer.mozilla.org/en-US/docs/Web/HTML/Global\_attributes/part](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part)
2905
+
2906
+ #### Inherited from
2907
+
2908
+ `DetailedHTMLProps.part`
2909
+
2910
+ ***
2911
+
2912
+ ### popover?
2913
+
2914
+ > `optional` **popover**: `""` \| `"auto"` \| `"manual"`
2915
+
2916
+ #### Inherited from
2917
+
2918
+ `DetailedHTMLProps.popover`
2919
+
2920
+ ***
2921
+
2922
+ ### popoverTarget?
2923
+
2924
+ > `optional` **popoverTarget**: `string`
2925
+
2926
+ #### Inherited from
2927
+
2928
+ `DetailedHTMLProps.popoverTarget`
2929
+
2930
+ ***
2931
+
2932
+ ### popoverTargetAction?
2933
+
2934
+ > `optional` **popoverTargetAction**: `"toggle"` \| `"show"` \| `"hide"`
2935
+
2936
+ #### Inherited from
2937
+
2938
+ `DetailedHTMLProps.popoverTargetAction`
2939
+
2940
+ ***
2941
+
2942
+ ### prefix?
2943
+
2944
+ > `optional` **prefix**: `string`
2945
+
2946
+ #### Inherited from
2947
+
2948
+ `DetailedHTMLProps.prefix`
2949
+
2950
+ ***
2951
+
2952
+ ### property?
2953
+
2954
+ > `optional` **property**: `string`
2955
+
2956
+ #### Inherited from
2957
+
2958
+ `DetailedHTMLProps.property`
2959
+
2960
+ ***
2961
+
2962
+ ### radioGroup?
2963
+
2964
+ > `optional` **radioGroup**: `string`
2965
+
2966
+ #### Inherited from
2967
+
2968
+ `DetailedHTMLProps.radioGroup`
2969
+
2970
+ ***
2971
+
2972
+ ### ref?
2973
+
2974
+ > `optional` **ref**: `Ref`\<`HTMLImageElement`\>
2975
+
2976
+ Allows getting a ref to the component instance.
2977
+ Once the component unmounts, React will set `ref.current` to `null`
2978
+ (or call the ref with `null` if you passed a callback ref).
2979
+
2980
+ #### See
2981
+
2982
+ [React Docs](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom)
2983
+
2984
+ #### Inherited from
2985
+
2986
+ `DetailedHTMLProps.ref`
2987
+
2988
+ ***
2989
+
2990
+ ### referrerPolicy?
2991
+
2992
+ > `optional` **referrerPolicy**: `HTMLAttributeReferrerPolicy`
2993
+
2994
+ #### Inherited from
2995
+
2996
+ `DetailedHTMLProps.referrerPolicy`
2997
+
2998
+ ***
2999
+
3000
+ ### rel?
3001
+
3002
+ > `optional` **rel**: `string`
3003
+
3004
+ #### Inherited from
3005
+
3006
+ `DetailedHTMLProps.rel`
3007
+
3008
+ ***
3009
+
3010
+ ### resource?
3011
+
3012
+ > `optional` **resource**: `string`
3013
+
3014
+ #### Inherited from
3015
+
3016
+ `DetailedHTMLProps.resource`
3017
+
3018
+ ***
3019
+
3020
+ ### results?
3021
+
3022
+ > `optional` **results**: `number`
3023
+
3024
+ #### Inherited from
3025
+
3026
+ `DetailedHTMLProps.results`
3027
+
3028
+ ***
3029
+
3030
+ ### rev?
3031
+
3032
+ > `optional` **rev**: `string`
3033
+
3034
+ #### Inherited from
3035
+
3036
+ `DetailedHTMLProps.rev`
3037
+
3038
+ ***
3039
+
3040
+ ### role?
3041
+
3042
+ > `optional` **role**: `AriaRole`
3043
+
3044
+ #### Inherited from
3045
+
3046
+ `DetailedHTMLProps.role`
3047
+
3048
+ ***
3049
+
3050
+ ### security?
3051
+
3052
+ > `optional` **security**: `string`
3053
+
3054
+ #### Inherited from
3055
+
3056
+ `DetailedHTMLProps.security`
3057
+
3058
+ ***
3059
+
3060
+ ### sizes?
3061
+
3062
+ > `optional` **sizes**: `string`
3063
+
3064
+ #### Inherited from
3065
+
3066
+ `DetailedHTMLProps.sizes`
3067
+
3068
+ ***
3069
+
3070
+ ### slot?
3071
+
3072
+ > `optional` **slot**: `string`
3073
+
3074
+ #### Inherited from
3075
+
3076
+ `DetailedHTMLProps.slot`
3077
+
3078
+ ***
3079
+
3080
+ ### spellCheck?
3081
+
3082
+ > `optional` **spellCheck**: `Booleanish`
3083
+
3084
+ #### Inherited from
3085
+
3086
+ `DetailedHTMLProps.spellCheck`
3087
+
3088
+ ***
3089
+
3090
+ ### src?
3091
+
3092
+ > `optional` **src**: `string`
3093
+
3094
+ #### Inherited from
3095
+
3096
+ `DetailedHTMLProps.src`
3097
+
3098
+ ***
3099
+
3100
+ ### srcSet?
3101
+
3102
+ > `optional` **srcSet**: `string`
3103
+
3104
+ #### Inherited from
3105
+
3106
+ `DetailedHTMLProps.srcSet`
3107
+
3108
+ ***
3109
+
3110
+ ### style?
3111
+
3112
+ > `optional` **style**: `CSSProperties`
3113
+
3114
+ #### Inherited from
3115
+
3116
+ `DetailedHTMLProps.style`
3117
+
3118
+ ***
3119
+
3120
+ ### suppressContentEditableWarning?
3121
+
3122
+ > `optional` **suppressContentEditableWarning**: `boolean`
3123
+
3124
+ #### Inherited from
3125
+
3126
+ `DetailedHTMLProps.suppressContentEditableWarning`
3127
+
3128
+ ***
3129
+
3130
+ ### suppressHydrationWarning?
3131
+
3132
+ > `optional` **suppressHydrationWarning**: `boolean`
3133
+
3134
+ #### Inherited from
3135
+
3136
+ `DetailedHTMLProps.suppressHydrationWarning`
3137
+
3138
+ ***
3139
+
3140
+ ### tabIndex?
3141
+
3142
+ > `optional` **tabIndex**: `number`
3143
+
3144
+ #### Inherited from
3145
+
3146
+ `DetailedHTMLProps.tabIndex`
3147
+
3148
+ ***
3149
+
3150
+ ### title?
3151
+
3152
+ > `optional` **title**: `string`
3153
+
3154
+ #### Inherited from
3155
+
3156
+ `DetailedHTMLProps.title`
3157
+
3158
+ ***
3159
+
3160
+ ### translate?
3161
+
3162
+ > `optional` **translate**: `"yes"` \| `"no"`
3163
+
3164
+ #### Inherited from
3165
+
3166
+ `DetailedHTMLProps.translate`
3167
+
3168
+ ***
3169
+
3170
+ ### typeof?
3171
+
3172
+ > `optional` **typeof**: `string`
3173
+
3174
+ #### Inherited from
3175
+
3176
+ `DetailedHTMLProps.typeof`
3177
+
3178
+ ***
3179
+
3180
+ ### unselectable?
3181
+
3182
+ > `optional` **unselectable**: `"off"` \| `"on"`
3183
+
3184
+ #### Inherited from
3185
+
3186
+ `DetailedHTMLProps.unselectable`
3187
+
3188
+ ***
3189
+
3190
+ ### useMap?
3191
+
3192
+ > `optional` **useMap**: `string`
3193
+
3194
+ #### Inherited from
3195
+
3196
+ `DetailedHTMLProps.useMap`
3197
+
3198
+ ***
3199
+
3200
+ ### vocab?
3201
+
3202
+ > `optional` **vocab**: `string`
3203
+
3204
+ #### Inherited from
3205
+
3206
+ `DetailedHTMLProps.vocab`
3207
+
3208
+ ***
3209
+
3210
+ ### wallet
3211
+
3212
+ > **wallet**: `null` \| `Wallet`
3213
+
3214
+ ***
3215
+
3216
+ ### width?
3217
+
3218
+ > `optional` **width**: `string` \| `number`
3219
+
3220
+ #### Inherited from
3221
+
3222
+ `DetailedHTMLProps.width`