UNPKG

welcome-ui

Version:

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

8 lines (7 loc) 335 B
import { ThemeValues } from '../../theme'; import { LiteralUnion } from '../../utils'; export type Size = LiteralUnion<LoaderSize, number | string>; export type ThemeLoaders = Record<LoaderSize, string>; type LoaderSize = 'xs' | 'sm' | 'md' | 'lg'; export declare const getLoaders: ({ toRem }: ThemeValues) => ThemeLoaders; export {};