/**
* @file Checkboxes
* @description 多选输入框
* @author fex
*/
///
import React from 'react';
import { ThemeProps } from '../theme';
import { Option, Options } from './Select';
import { LocaleProps } from '../locale';
export interface BaseCheckboxesProps extends ThemeProps, LocaleProps {
options: Options;
className?: string;
placeholder?: string;
value?: Array;
onChange?: (value: Array