"use client"; import React from "react"; import { Info } from "lucide-react"; import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"; import { Button } from "@/components/ui/button"; interface InfoPopupProps { text: string; info: string; } export function InfoPopup({ text, info }: InfoPopupProps) { return (
{info}