bcche-ui-react
Version:
A component library that can achieve magic effects
12 lines (11 loc) • 319 B
TypeScript
import React from 'react';
import './CheckBoxList.less';
interface CheckBoxListOption {
label: string | boolean | number;
checked: boolean;
}
interface CheckBoxListProps {
options: Array<CheckBoxListOption>;
}
declare const CheckBoxList: React.FC<CheckBoxListProps>;
export default CheckBoxList;