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
10
web-app/src/components/ui/button/down-button.jsx
Normal file
10
web-app/src/components/ui/button/down-button.jsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import React from "react";
|
||||
import { ArrowDown } from "lucide-react";
|
||||
|
||||
export default function DownButton({ onClick }) {
|
||||
return (
|
||||
<button onClick={onClick} className="bg-gray-700 p-2 rounded-2xl">
|
||||
<ArrowDown />
|
||||
</button>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue