feat(mui): first ui-kit wrappers (Button, Card, TextField) + barrel

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-06 19:13:14 +02:00
parent bb7e53f47a
commit 090cfd7400
4 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import MuiTextField, { type TextFieldProps } from "@mui/material/TextField";
/** App TextField: small + outlined + full width by default. */
export default function TextField(props: TextFieldProps) {
return <MuiTextField size="small" variant="outlined" fullWidth {...props} />;
}