feat(buttons): added flame and down button

This commit is contained in:
JK-le-dev 2025-10-18 20:31:35 -05:00
commit c9327b3ec3
5 changed files with 42 additions and 32 deletions

View file

@ -0,0 +1,9 @@
import { Flame } from "lucide-react";
export default function FlameButton({ onClick }) {
return (
<button onClick={onClick} className="bg-gray-700 p-2 rounded-2xl">
<Flame />
</button>
);
}