| 7 | import { Fields } from './Fields' |
| 8 | |
| 9 | interface Props { |
| 10 | items: PickerItem[] |
| 11 | iconButton?: Icon |
| 12 | onSelect?: (item: PickerItem) => void |
| 13 | buttonBorder?: boolean |
| 14 | pickerLabel?: string |
| 15 | dataTestId: string |
| 16 | defaultText: string |
| 17 | ariaLabel: string |
| 18 | alignment: AnchorAlignment |
| 19 | renderItem?: (item: PickerItem) => ReactNode | string |
| 20 | } |
| 21 | |
| 22 | export interface PickerItem { |
| 23 | href: string |
nothing calls this directly
no outgoing calls
no test coverage detected