UNPKG

@brizy/ui

Version:
10 lines (9 loc) 352 B
import { Gutter, Height } from "./utils"; import { DataAttributes, FCC } from "../types"; export interface Props extends DataAttributes { gutter?: Gutter; alignY?: "top" | "middle" | "bottom" | "stretch"; align?: "start" | "end" | "center" | "space-around" | "space-between"; height?: Height; } export declare const Layout: FCC<Props>;