// Lunatic default Input: https://github.com/InseeFr/Lunatic/blob/v2-master/src/components/button/lunatic-button.js import { Button as ButtonMaterial } from "@mui/material"; import { memo } from "react"; import { makeStylesEdt } from "../../theme"; export type ButtonProps = { id?: string; label?: string; className?: string; disabled?: boolean; onClick?(): void; }; const Button = memo((props: ButtonProps) => { const { id, label, disabled, className, onClick } = props; const { classes, cx } = useStyles(); return ( {label} ); }); const useStyles = makeStylesEdt({ "name": { Button } })(() => ({ "MuiButton": { textTransform: "none", }, })); export default Button;