/// import { ExtendButtonBase } from '@mui/material/ButtonBase'; import { ButtonTypeMap } from '@mui/material/Button/Button'; interface IrubiwinSquareButton extends ExtendButtonBase { text: string; className?: string; disabled?: boolean; fullWidth?: boolean; href?: string; size?: 'small' | 'medium' | 'large'; startIcon?: Element; endIcon?: Element; } /** * This is a Mui Button branded for Rubiwin * * Demos: * - [Button Group](https://mui.com/components/button-group/) * - [Buttons](https://mui.com/components/buttons/) * * API: * - [Button API](https://mui.com/api/button/) * - inherits [ButtonBase API](https://mui.com/api/button-base/) */ declare const RubiwinSquareButton: ({ text, className, disabled, fullWidth, href, size, endIcon, startIcon, ...props }: IrubiwinSquareButton) => JSX.Element; export default RubiwinSquareButton;