Interface SelectOptionProps

interface SelectOptionProps {
    children?: ReactNode;
    disabled?: boolean;
    value: string;
}

Hierarchy

  • PropsWithChildren
    • SelectOptionProps

Properties

children?: ReactNode
disabled?: boolean
value: string