UNPKG

@brizy/ui

Version:
10 lines (9 loc) 385 B
import { ApplyProperties } from "../types"; export type Gutter = [number, number] | "strict" | "lazy" | "hustle"; export type Height = "fullHeight" | string; type CustomHeight = ApplyProperties<{ "--brz-ui-layout-height": string; }>; export declare const getGutter: (gutter: Gutter) => [number, number]; export declare const getHeight: (height: Height) => CustomHeight; export {};