button panel

This commit is contained in:
2024-01-26 18:33:17 +05:00
parent b41c21c9fc
commit 5c20268ecf
7 changed files with 91 additions and 9 deletions
+18
View File
@@ -0,0 +1,18 @@
import ResizeIcon from "../icons/ResizeIcon";
type ResizeButtonProps = {
handleOnHelpClick: () => void;
};
const ResizeButton = ({ handleOnHelpClick }: ResizeButtonProps) => {
return (
<button
className="bg-white border-[#C7BDBA] p-[6px] rounded-full"
onClick={handleOnHelpClick}
>
<ResizeIcon />
</button>
);
};
export default ResizeButton;