You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
378 B
12 lines
378 B
import * as React from 'react';
|
|
import FormCheck from './FormCheck';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const Switch = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/_jsx(FormCheck, { ...props,
|
|
ref: ref,
|
|
type: "switch"
|
|
}));
|
|
Switch.displayName = 'Switch';
|
|
export default Object.assign(Switch, {
|
|
Input: FormCheck.Input,
|
|
Label: FormCheck.Label
|
|
}); |