@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.
10 lines (9 loc) • 340 B
TypeScript
import React from 'react';
import { UploadButtonProps } from './types';
/**
* UploadButton allow users to implement file uploading.
*
* Props of the [Material-UI Button](https://mui.com/material-ui/api/button/#props) component are also available.
*/
declare const UploadButton: React.FC<UploadButtonProps>;
export default UploadButton;