UNPKG

@rsksmart/rif-ui

Version:

Exposes common components to be re used in RIF projects

10 lines (9 loc) 288 B
import { FC } from 'react'; import { ButtonProps as MUIButtonProps } from '@material-ui/core'; export interface ButtonProps extends MUIButtonProps { block?: boolean; shadow?: boolean; rounded?: boolean; } declare const Button: FC<ButtonProps>; export default Button;