baseui
Version:
A React Component library implementing the Base design language
20 lines (19 loc) • 537 B
TypeScript
import * as React from 'react';
import type { CountrySelectProps } from './types';
declare function CountrySelect(props: CountrySelectProps): React.JSX.Element;
declare namespace CountrySelect {
var defaultProps: {
disabled: boolean;
inputRef: {
current: any;
};
maxDropdownHeight: string;
maxDropdownWidth: string;
overrides: {};
size: "default";
error: boolean;
positive: boolean;
required: boolean;
};
}
export default CountrySelect;