import type { SelectProps } from '../../../../types/select'; import { Button } from '../../../button/public'; const SELECT_CHEVRON_ICON = { name: 'chevron-down' } as const; /*** Renders the shared Select trigger with the resolved option label or placeholder. */ export function SelectTrigger({ displayLabel, onPress, props, }: SelectTriggerProps) { return ( ); } interface SelectTriggerProps { displayLabel: string | undefined; onPress: () => void; props: SelectProps; }