File size: 2,050 Bytes
cf86710
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Interface: DropdownProps

The props for the [Dropdown](../functions/Dropdown.md) component.

## Properties

### aria-label?

> `optional` **aria-label**: `string`

#### Source

[src/components/Dropdown.tsx:20](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L20)

***

### caption?

> `optional` **caption**: `ReactNode`

The caption displayed to replace the hidden select.

#### Source

[src/components/Dropdown.tsx:17](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L17)

***

### children?

> `optional` **children**: `ReactNode`

#### Source

[src/components/Dropdown.tsx:18](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L18)

***

### className?

> `optional` **className**: `string`

#### Source

[src/components/Dropdown.tsx:19](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L19)

***

### name?

> `optional` **name**: `string`

The name attribute of the element.

#### Source

[src/components/Dropdown.tsx:15](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L15)

***

### onChange?

> `optional` **onChange**: `ChangeEventHandler`\<`HTMLSelectElement`\>

#### Source

[src/components/Dropdown.tsx:24](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L24)

***

### style?

> `optional` **style**: `CSSProperties`

#### Source

[src/components/Dropdown.tsx:21](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L21)

***

### value?

> `optional` **value**: `string` \| `number`

The selected value.

#### Source

[src/components/Dropdown.tsx:23](https://github.com/gpbl/react-day-picker/blob/9ad13dc72fff814dcf720a62f6e3b5ea38e8af6d/src/components/Dropdown.tsx#L23)