CodeRED-Astra/web-app/src/components/ui/button/delete-button.jsx
JK-le-dev 7785047976 feat(file input): adding feature to add and remove files
Next up is to create a seperate menu that will show all the files.
Probably as a seperate frame. Needs to be scrollable and can use similar
ui as before
2025-10-19 04:32:32 -05:00

15 lines
385 B
JavaScript

import { Flame } from "lucide-react";
import { motion } from "motion/react";
export default function FlameButton({ onClick }) {
return (
<motion.button
onClick={onClick}
className="bg-gray-700 cursor-pointer p-2 rounded-2xl border-2 border-gray-600"
whileHover={{ scale: 1.1 }}
whileTap={{ scale: 0.9 }}
>
<Flame />
</motion.button>
);
}