@ozen-ui/kit
Version:
React component library
18 lines (17 loc) • 445 B
TypeScript
import type { ThemeToken } from '../../entities';
export type ThemeSpaceTokenProperties = {
'8xl': string;
'7xl': string;
'6xl': string;
'5xl': string;
'4xl': string;
'3xl': string;
'2xl': string;
xl: string;
l: string;
m: string;
s: string;
xs: string;
};
export type ThemeSpaceTokenVariable = keyof ThemeSpaceTokenProperties;
export type ThemeSpaceToken = ThemeToken<ThemeSpaceTokenProperties>;