@upv/react-ui-core
Version:
**USHI Design System — Modern UI Component Library**
17 lines (16 loc) • 427 B
TypeScript
import React from "react";
export interface CheckboxGroupProps {
label?: string;
helperText?: string;
error?: string;
disabled?: boolean;
options: {
label: string;
value: string;
}[];
value: string[];
onChange: (val: string[]) => void;
direction?: "row" | "column";
selected?: (val: string) => boolean;
}
export declare const CheckboxGroup: React.FC<CheckboxGroupProps>;