UNPKG

@smashing/select-menu

Version:
11 lines (10 loc) 567 B
/// <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'>; }> { } }