UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

8 lines (7 loc) 352 B
import Checkbox from "../Checkbox/Checkbox.js"; export type SwitchProps = Omit<React.ComponentProps<typeof Checkbox>, "type" | "indeterminate" | "ref">; /** * Alias for `<Checkbox type="switch">` */ declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<HTMLInputElement>>; export default Switch;