UNPKG

@ozen-ui/kit

Version:

React component library

10 lines (9 loc) 321 B
import type { ThemeToken } from '../../entities'; export type ThemeBreakpointTokenProperties = { xs: number; s: number; m: number; l: number; }; export type ThemeBreakpointTokenVariable = keyof ThemeBreakpointTokenProperties; export type ThemeBreakpointToken = ThemeToken<ThemeBreakpointTokenProperties>;