FrontPastel/node_modules/@mui/base/Switch/Switch.d.ts

16 lines
433 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
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 };