UNPKG

@ozen-ui/kit

Version:

React component library

17 lines (16 loc) 436 B
import type { ThemeToken } from '../../entities'; export type ThemeSpacingTokenProperties = { '4xs': string; '3xs': string; '2xs': string; xs: string; s: string; m: string; l: string; xl: string; '2xl': string; '3xl': string; '4xl': string; }; export type ThemeSpacingTokenVariable = keyof ThemeSpacingTokenProperties; export type ThemeSpacingToken = ThemeToken<ThemeSpacingTokenProperties>;