mochi-ui
Version:
Mochi UI is a React component library that helps you build aweomse production ready UI components with a soft UI design.
19 lines (18 loc) • 441 B
TypeScript
import React from 'react';
type Props = {
domName: string;
values: {
key: string;
label: string;
disabled?: boolean;
}[];
name: string;
onChange: (keys: string[]) => void;
containerClassName?: string;
value: string[];
touched?: boolean;
error?: string;
setTouched?: () => void;
};
declare const CheckBoxGroup: (props: Props) => React.JSX.Element;
export default CheckBoxGroup;