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