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

6
src/admin/ui/Button.tsx Normal file
View File

@@ -0,0 +1,6 @@
import MuiButton, { type ButtonProps } from "@mui/material/Button";
/** App Button: defaults to the brand primary contained style. */
export default function Button(props: ButtonProps) {
return <MuiButton variant="contained" color="primary" {...props} />;
}