Page MenuHomec4science

FormSelect.d.ts
No OneTemporary

File Metadata

Created
Tue, Jul 29, 06:01

FormSelect.d.ts

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;

Event Timeline