Files
Checkmate/client/src/Components/v2/Inputs/Button.tsx
T
Alex Holliday 86bb28e239 pagination
2025-10-08 13:44:41 -07:00

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 }}
/>
);
};