UNPKG

welcome-ui

Version:

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

8 lines (7 loc) 338 B
import { ThemeValues } from '../../theme'; import { LiteralUnion } from '../../utils'; export type Size = LiteralUnion<IconSize, number | string>; export type ThemeIcons = Record<IconSize, string>; type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; export declare const getIcons: ({ toRem }: ThemeValues) => ThemeIcons; export {};