mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
422 B
TypeScript
11 lines
422 B
TypeScript
import * as React from 'react';
|
|
import { BsPrefixOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface FormSelectProps extends BsPrefixOnlyProps, React.HTMLAttributes<HTMLSelectElement> {
|
|
htmlSize?: number;
|
|
size?: 'sm' | 'lg';
|
|
isValid?: boolean;
|
|
isInvalid?: boolean;
|
|
}
|
|
declare const FormSelect: BsPrefixRefForwardingComponent<'select', FormSelectProps>;
|
|
export default FormSelect;
|