UNPKG

react-bootstrap-v5

Version:

Bootstrap 4 components built with React

11 lines (10 loc) 466 B
import React from 'react'; import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers'; export interface FormSelectProps extends React.PropsWithChildren<BsPrefixAndClassNameOnlyProps>, React.HTMLAttributes<HTMLSelectElement> { htmlSize?: number; size?: 'sm' | 'lg'; isValid?: boolean; isInvalid?: boolean; } declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>; export default FormSelect;