UNPKG

@firecms/ui

Version:

Awesome Firebase/Firestore-based headless open-source CMS

12 lines (11 loc) 463 B
export interface CheckboxProps { checked: boolean; id?: string; disabled?: boolean; indeterminate?: boolean; onCheckedChange?: (checked: boolean) => void; padding?: boolean; size?: "smallest" | "small" | "medium" | "large"; color?: "primary" | "secondary"; } export declare const Checkbox: ({ id, checked, indeterminate, padding, disabled, size, onCheckedChange, color }: CheckboxProps) => import("react/jsx-runtime").JSX.Element;