UNPKG

656 BTypeScriptView Raw
1import * as React from 'react';
2export interface FormSelectOptionProps extends Omit<React.HTMLProps<HTMLOptionElement>, 'disabled'> {
3 /** additional classes added to the Select Option */
4 className?: string;
5 /** the value for the option */
6 value?: any;
7 /** the label for the option */
8 label: string;
9 /** flag indicating if the option is disabled */
10 isDisabled?: boolean;
11 /** flag indicating if option will have placeholder styling applied when selected **/
12 isPlaceholder?: boolean;
13}
14export declare const FormSelectOption: React.FunctionComponent<FormSelectOptionProps>;
15//# sourceMappingURL=FormSelectOption.d.ts.map
\No newline at end of file