mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-19 16:08:39 -05:00
12 lines
308 B
TypeScript
12 lines
308 B
TypeScript
import Button from "@mui/material/Button";
|
|
import type { ButtonProps } from "@mui/material/Button";
|
|
|
|
export const ButtonInput: React.FC<ButtonProps> = ({ sx, ...props }) => {
|
|
return (
|
|
<Button
|
|
{...props}
|
|
sx={{ textTransform: "none", height: 34, fontWeight: 400, borderRadius: 2, ...sx }}
|
|
/>
|
|
);
|
|
};
|