You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
442 B
11 lines
442 B
import * as React from 'react';
|
|
import { BsPrefixOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface FormSelectProps extends BsPrefixOnlyProps, Omit<React.SelectHTMLAttributes<HTMLSelectElement>, 'size'> {
|
|
htmlSize?: number;
|
|
size?: 'sm' | 'lg';
|
|
isValid?: boolean;
|
|
isInvalid?: boolean;
|
|
}
|
|
declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>;
|
|
export default FormSelect;
|