UNPKG

mobile-more

Version:

基于 antd-mobile v5 扩展移动端 UI 组件

14 lines (13 loc) 683 B
import React from 'react'; import { BizFormItemProps } from '../FormItem'; import { SuperCheckboxProps } from './SuperCheckbox'; declare const squareIcon: (checked: boolean) => React.JSX.Element; export interface BizFormItemCheckboxProps extends Omit<BizFormItemProps, 'children'>, Pick<SuperCheckboxProps, 'block' | 'icon' | 'options' | 'fieldNames' | 'spaceProps' | 'checkboxProps' | 'checkboxGroupProps'> { } declare const BizFormItemCheckbox: React.FC<BizFormItemCheckboxProps> & { /** * @description 内置方形选框,便于自定义图标。可以直接传给 `icon` 属性配置。 */ squareIcon: typeof squareIcon; }; export default BizFormItemCheckbox;