* Reorganize repo * Overhaul website design and rewrite in NextJS and Typescript * Delete website-publish.yml
28 lines
641 B
TypeScript
28 lines
641 B
TypeScript
import Button from '@mui/material/Button';
|
|
import React from 'react';
|
|
|
|
export interface FileUploadButtonProps {
|
|
label: string;
|
|
imagesOnly?: boolean;
|
|
onChange: React.ChangeEventHandler<HTMLInputElement>;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
const FileUploadButton = ({ label, imagesOnly, onChange, disabled }: FileUploadButtonProps) => {
|
|
return (
|
|
<Button variant="contained" component="label">
|
|
{label}
|
|
<input
|
|
hidden
|
|
multiple
|
|
type="file"
|
|
accept={imagesOnly ? 'image/*' : '*/*'}
|
|
onChange={onChange}
|
|
disabled={disabled}
|
|
/>
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default FileUploadButton;
|