UNPKG

@brizy/ui

Version:
15 lines (14 loc) 404 B
import { ReactElement } from "react"; import { FCC } from "../types"; export interface Props { label?: string | ReactElement; labelHorizontal?: "left" | "right"; helper?: string | ReactElement; htmlFor?: string; description?: string; errorMessage?: string; bottomSpace?: number; size?: "middle" | "large"; labelTitle?: string; } export declare const Item: FCC<Props>;