props.js 519 B

123456
  1. import { __assign, __rest } from "tslib";
  2. import { FormItemDefaultProps } from '../FormItem/props';
  3. import { SwitchDefaultProps } from '../../Switch/props';
  4. // eslint-disable-next-line @typescript-eslint/no-unused-vars
  5. var checked = SwitchDefaultProps.checked, defaultChecked = SwitchDefaultProps.defaultChecked, rest = __rest(SwitchDefaultProps, ["checked", "defaultChecked"]);
  6. export var FormSwitchDefaultProps = __assign(__assign(__assign({}, FormItemDefaultProps), rest), { switchClassName: '', switchStyle: '' });