ohctechv3/.svn/pristine/13/1347bfed2615a2937ab621a1fc371d0091a1de30.svn-base

16 lines
434 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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 };