first commit

This commit is contained in:
2025-10-19 13:31:11 +00:00
commit 8bfc183b66
1248 changed files with 195992 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { Box, Typography } from "@mui/material";
export interface StyledFormControlProps {
title?: React.ReactNode;
children: React.ReactNode;
}
const StyledFormControl = ({ title, children }: StyledFormControlProps) => {
return (
<Box>
{title && (
<Typography fontWeight={600} sx={{ mb: 0.5 }} variant={"body2"}>
{title}
</Typography>
)}
{children}
</Box>
);
};
export default StyledFormControl;