UNPKG

@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) 426 B
import React from 'react'; import { IconButtonProps } from './types'; /** * IconButtons allow users to take actions, and make choices using icons to describe best the action * 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 IconButton: React.FC<IconButtonProps>; export default IconButton;