UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

12 lines 445 B
import type { ReactNode } from "react"; import { type SVGIconElement } from "../primitives/Icon"; export interface CheckboxCardProps { value: string; label: string; description?: string; icon?: SVGIconElement; disabled?: boolean; className?: string; } export declare function CheckboxCard({ value, label, description, icon, disabled, className, }: CheckboxCardProps): ReactNode; //# sourceMappingURL=CheckboxCard.d.ts.map