UNPKG

@kahi-ui/framework

Version:

Straight-forward Svelte UI for the Web

22 lines (21 loc) 674 B
import type { LiteralObject } from "./util"; import type { BreakpointEnum } from "./viewports"; /** * Represents the tiers of grid points tokens that can be applied to Framework Components */ export declare const TOKENS_POINTS: { readonly "1": "1"; readonly "2": "2"; readonly "3": "3"; readonly "4": "4"; readonly "5": "5"; readonly "6": "6"; readonly "7": "7"; readonly "8": "8"; readonly "9": "9"; readonly "10": "10"; readonly "11": "11"; readonly "12": "12"; }; export declare type PROPERTY_POINTS = LiteralObject<typeof TOKENS_POINTS>; export declare type PROPERTY_POINTS_BREAKPOINT = BreakpointEnum<PROPERTY_POINTS>;