tech stack
import { Button } from “@/components/ui/button”;
import { Plus } from “lucide-react”;
import { cn } from “@/lib/utils”;
interface FloatingActionButtonProps {
onClick: () => void;
className?: string;
}
export default function FloatingActionButton({ onClick, className }: FloatingActionButtonProps) {
return (
);
}