@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) • 434 B
TypeScript
import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { ButtonTypeMap } from './Button.types';
/**
* The foundation for building custom-styled buttons.
*
* Demos:
*
* - [Button](https://mui.com/base-ui/react-button/)
*
* API:
*
* - [Button API](https://mui.com/base-ui/react-button/components-api/#button)
*/
declare const Button: PolymorphicComponent<ButtonTypeMap<{}, "button">>;
export { Button };