UNPKG
mui-tw-components
Version:
latest (1.0.1)
1.0.1
1.0.0
````markdown # **mui-tw-components - Reusable UI Components**
mui-tw-components
/
dist
/
components
/
Label.d.ts
11 lines
(10 loc)
•
302 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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;