@brizy/ui
Version:
React elements in Brizy style
20 lines (19 loc) • 524 B
TypeScript
import { Size } from "./utils";
import { Color, FCC } from "../types";
export interface Props {
size?: Size | [Size, Size] | [Size, Size, Size];
height?: string;
cover?: string;
shadow?: boolean;
loading?: boolean;
onClick?: VoidFunction;
color?: Color;
hoverColor?: Color;
width?: string;
borderStyle?: "none" | "solid" | "dashed" | "dotted";
borderColor?: Color;
borderWidth?: string;
borderRadius?: string;
zIndex?: number;
}
export declare const Card: FCC<Props>;