mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-19 16:08:39 -05:00
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
import ButtonGroup from "@mui/material/ButtonGroup";
|
|
import type { ButtonGroupProps } from "@mui/material/ButtonGroup";
|
|
export const ButtonGroupInput: React.FC<ButtonGroupProps> = ({
|
|
orientation,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<ButtonGroup
|
|
orientation={orientation}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|