UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

9 lines (8 loc) 286 B
import { CSSObject } from '@xstyled/styled-components'; import { ThemeValues } from '../../theme'; export type ThemeDropdownMenu = { inner: CSSObject; item: CSSObject; separator: CSSObject; }; export declare const getDropdownMenu: (theme: ThemeValues) => ThemeDropdownMenu;