import { IconButton } from "@mui/material"; import { Remove } from "@mui/icons-material"; import React, { FC } from "react"; interface RemoveButtonProps { handleClick: () => void; size?: "small" | "medium" | "large"; } export const RemoveButton: FC = ({ handleClick, size }) => { return ( ); };