UNPKG

@mui/base

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

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