7 lines
261 B
TypeScript
7 lines
261 B
TypeScript
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} />;
|
|
}
|