We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d603f8b commit 50737bfCopy full SHA for 50737bf
src/Shared/Components/SelectPicker/SelectPicker.component.tsx
@@ -13,7 +13,9 @@ import { SelectPickerOptionType } from './type'
13
14
export interface SelectPickerProps
15
extends Pick<
16
- ReactSelectProps,
+ ReactSelectProps<SelectPickerOptionType>,
17
+ | 'options'
18
+ | 'value'
19
| 'isMulti'
20
| 'onChange'
21
| 'isSearchable'
@@ -30,8 +32,6 @@ export interface SelectPickerProps
30
32
> {
31
33
icon?: ReactElement
34
error?: ReactNode
- options: SelectPickerOptionType[]
- value?: SelectPickerOptionType
35
renderMenuListFooter?: () => ReactNode
36
}
37
0 commit comments