UNPKG

@mui/base

Version:

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

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