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 HelpIcon from "../icons/HelpIcon";
type HelpButtonProps = {
handleOnHelpClick: () => void;
};
const HelpButton = ({ handleOnHelpClick }: HelpButtonProps) => {
return (
<button
className="bg-white border-[#C7BDBA] p-[6px] rounded-full"
onClick={handleOnHelpClick}
>
<HelpIcon />
</button>
);
};
export default HelpButton;