import { IconButton } from "@mui/material"; import { Circle } from "@mui/icons-material"; interface BreakpointButtonProps { handleClick: () => void; size?: "small" | "medium" | "large"; changeColor?: boolean; } export const BreakpointButton = ({ handleClick, size, changeColor }: BreakpointButtonProps) => { return ( ); };