"use client"; import { Button } from "@/components/ui/button"; import { HiOutlineHandThumbUp, HiOutlineChatBubbleLeftEllipsis, } from "react-icons/hi2"; import { HiOutlineLightningBolt } from "react-icons/hi"; import ZapPicker from "@/components/Modals/ZapPicker"; import { useModal } from "@/app/_providers/modal/provider"; import { NostrEvent } from "@nostr-dev-kit/ndk"; import { stopPropagation } from "@/lib/utils"; type ActionProps = { event: NostrEvent; }; export default function Actions({ event }: ActionProps) { const modal = useModal(); return (