UNPKG

@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

8 lines (7 loc) 262 B
import type { ReactNode } from 'react'; type FormLabelTextProps = { label: ReactNode; required?: boolean; }; declare const FormLabelText: ({ label, required }: FormLabelTextProps) => import("react/jsx-runtime").JSX.Element; export default FormLabelText;