@brizy/ui
Version:
React elements in Brizy style
10 lines (9 loc) • 385 B
TypeScript
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 {};