Home > @uniformdev/design-system > InputSelectProps
InputSelectProps type
Signature:
type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
defaultOption?: string;
options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
label: string;
}>;
caption?: string | JSX.Element;
label: string;
showLabel?: boolean;
errorMessage?: string;
warningMessage?: string;
labelCta?: JSX.Element;
compact?: boolean;
classNameContainer?: string;
classNameControl?: string;
classNameLabel?: string;
};