@ozen-ui/kit
Version:
React component library
20 lines (19 loc) • 602 B
TypeScript
import type { ThemeToken } from '../../entities';
export type ThemeControlTokenProperties = {
'padding-4xs': string;
'padding-3xs': string;
'padding-2xs': string;
'padding-xs': string;
'padding-s': string;
'padding-m': string;
'padding-l': string;
'height-4xs': string;
'height-3xs': string;
'height-2xs': string;
'height-xs': string;
'height-s': string;
'height-m': string;
'height-l': string;
};
export type ThemeControlTokenVariable = keyof ThemeControlTokenProperties;
export type ThemeControlToken = ThemeToken<ThemeControlTokenProperties>;