UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

8 lines (7 loc) 279 B
/// <reference types="react" /> import type { ISwitch } from './ISwitch'; /** * Switches toggle the state of a single item on or off. */ declare function Switch({ onChange, isSelected, isDisabled, name, hasFrozenState, ...props }: ISwitch): JSX.Element; export default Switch;