@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
7 lines (6 loc) • 304 B
TypeScript
import { CheckboxConfig } from "./types";
type Props<T> = CheckboxConfig<T> & {
onChange: (value: string) => void;
};
export declare const VuiSuperCheckbox: <T extends string>({ label, description, value, checked, onChange, ...rest }: Props<T>) => import("react/jsx-runtime").JSX.Element;
export {};