File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import { FormLabelProps as MuiFormLabelProps , FormLabel as MuiFormLable } from '@mui/material' ;
2+ import React from 'react' ;
3+
4+ const FormLabel = React . forwardRef < HTMLLabelElement , MuiFormLabelProps > ( ( props , ref ) => {
5+ return < MuiFormLable { ...props } ref = { ref } /> ;
6+ } ) ;
7+
8+ export { FormLabel } ;
Original file line number Diff line number Diff line change 1+ export { FormLabel } from './FormLabel' ;
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export * from './Drawer';
3232export * from './FormControl' ;
3333export * from './FormControlLabel' ;
3434export * from './FormGroup' ;
35+ export * from './FormLabel' ;
3536export * from './Grid' ;
3637export * from './Grow' ;
3738export * from './IconButton' ;
@@ -52,6 +53,7 @@ export * from './MenuList';
5253export * from './OutlinedInput' ;
5354export * from './Pagination' ;
5455export * from './Paper' ;
56+ export * from './Popover' ;
5557export * from './Popper' ;
5658export * from './RadioGroup' ;
5759export * from './Select' ;
You can’t perform that action at this time.
0 commit comments