client/components/Button.jsx (11 lines of code) (raw):
export default function Button({ icon, children, onClick, className }) {
return (
<button
className={`bg-gray-800 text-white rounded-full p-4 flex items-center gap-1 hover:opacity-90 ${className}`}
onClick={onClick}
>
{icon}
{children}
</button>
);
}