import ResizeIcon from "../icons/ResizeIcon"; type ResizeButtonProps = { handleOnHelpClick: () => void; className?: string; }; const ResizeButton = ({ handleOnHelpClick, className }: ResizeButtonProps) => { return ( ); }; export default ResizeButton;