UNPKG

@mui/base

Version:

A library of headless ('unstyled') React UI components and low-level hooks.

16 lines (15 loc) 431 B
import { PolymorphicComponent } from '../utils/PolymorphicComponent'; import { SwitchTypeMap } from './Switch.types'; /** * The foundation for building custom-styled switches. * * Demos: * * - [Switch](https://mui.com/base/react-switch/) * * API: * * - [Switch API](https://mui.com/base/react-switch/components-api/#switch) */ declare const Switch: PolymorphicComponent<SwitchTypeMap<{}, "span">>; export default Switch;