UNPKG

weavify

Version:

````markdown # **Weavify - Reusable UI Components**

11 lines (10 loc) 302 B
import { InputLabelProps } from '@mui/material'; import React from 'react'; interface LabelProps extends InputLabelProps { required?: boolean; label: string; htmlFor: string; className?: string; } declare const _default: React.NamedExoticComponent<LabelProps>; export default _default;