@smashing/select-menu
Version:
Component used to select options
11 lines (10 loc) • 567 B
TypeScript
/// <reference types="react" />
import { SelectMenuProps } from './types';
declare const SelectMenu: import("styled-components").StyledComponent<(props: SelectMenuProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
export { SelectMenu, SelectMenuProps };
declare module 'styled-components' {
interface SmashingSelectMenuDefaults extends Partial<{
selectMenu: Pick<SelectMenuProps, 'height' | 'appearance' | 'popoverAppearance' | 'hasCloseButton' | 'placeholder' | 'placeholderForMultipleSelected' | 'arrowIcon'>;
}> {
}
}