Skip to content

Commit

Permalink
feat(UI): add FormLabel component
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Sahu <[email protected]>
  • Loading branch information
SAHU-01 committed Nov 21, 2024
1 parent 01959f7 commit 6d35b8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/base/FormLabel/FormLabel.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { FormLabel as MuiFormLabel, FormLabelProps as MuiFormLabelProps } from '@mui/material';

export function FormLabel(props: MuiFormLabelProps): JSX.Element {
return <MuiFormLabel {...props} />;
}
1 change: 1 addition & 0 deletions src/base/FormLabel/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { FormLabel } from './FormLabel';

0 comments on commit 6d35b8f

Please sign in to comment.