welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
19 lines (18 loc) • 393 B
TypeScript
import { ThemeValues } from '.';
export type ThemeSpace = {
xxs: string;
xs: string;
sm: string;
md: string;
lg: string;
xl: string;
xxl: string;
'3xl': string;
'4xl': string;
'5xl': string;
'6xl': string;
'7xl': string;
[key: string]: string;
[key: number]: string;
};
export declare const getSpace: (theme: ThemeValues) => ThemeSpace;