@nish1896/rhf-mui-components
Version:
A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms
10 lines (9 loc) • 328 B
TypeScript
import type { ReactNode } from 'react';
type UploadButtonProps = {
label: ReactNode;
fieldName: string;
disabled?: boolean;
children?: ReactNode;
};
declare const UploadButton: ({ label, fieldName, disabled, children }: UploadButtonProps) => import("react/jsx-runtime").JSX.Element;
export default UploadButton;