import { Button, ButtonGroup } from "@mui/material"; interface Props { value?: string; onChange?: (value: string) => void; } export const StackModeSwitch = (props: Props) => { const { value, onChange } = props; return ( ); };