feat(buttons): added flame and down button
This commit is contained in:
parent
5e0de6e894
commit
c9327b3ec3
5 changed files with 42 additions and 32 deletions
9
web-app/src/components/ui/button/delete-button.jsx
Normal file
9
web-app/src/components/ui/button/delete-button.jsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue