props.js 491 B

123456
  1. import { __assign, __rest } from "tslib";
  2. import { FormItemDefaultProps } from '../FormItem/props';
  3. import { CheckboxGroupDefaultProps, } from '../../Checkbox/CheckboxGroup/props';
  4. // eslint-disable-next-line @typescript-eslint/no-unused-vars
  5. var position = CheckboxGroupDefaultProps.position, rest = __rest(CheckboxGroupDefaultProps, ["position"]);
  6. export var FormCheckboxGroupDefaultProps = __assign(__assign(__assign({}, FormItemDefaultProps), rest), { checkboxPosition: 'horizontal' });