@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
11 lines (10 loc) • 386 B
TypeScript
import React from 'react';
import { ButtonProps } from './types';
/**
* Buttons allow users to take actions, and make choices, with a single tap.
* It triggers an action or event when activated.
*
* Props of the [Material-UI Button](https://mui.com/material-ui/api/button/#props) component are also available.
*/
declare const Button: React.FC<ButtonProps>;
export default Button;