| 20 | } |
| 21 | |
| 22 | export interface PickerItem { |
| 23 | href: string |
| 24 | text: string |
| 25 | selected: boolean |
| 26 | extra?: { |
| 27 | [key: string]: any |
| 28 | } |
| 29 | divider?: boolean |
| 30 | } |
| 31 | |
| 32 | export const Picker = ({ |
| 33 | items, |
nothing calls this directly
no outgoing calls
no test coverage detected