import type { SelectOption, SelectProps } from '../../../../types/select'; import { Button } from '../../../button/public'; const SELECTED_ICON = { name: 'checkmark' } as const; /*** Renders one Select option with shared web/native selection semantics. */ export function SelectOptionRow({ interactionPolicy, onSelect, option, selected, testID, }: SelectOptionRowProps) { return ( ); } interface SelectOptionRowProps { interactionPolicy: SelectProps['interactionPolicy']; onSelect: (value: TValue) => void; option: SelectOption; selected: boolean; testID: string | undefined; }