// largely from https://github.com/shadcn/taxonomy import * as React from "react" import * as PopoverPrimitive from "@radix-ui/react-popover" import clsx from "clsx" import styles from "./popover.module.css" type PopoverProps = PopoverPrimitive.PopoverProps export function Popover({ ...props }: PopoverProps) { return } Popover.Trigger = React.forwardRef< HTMLButtonElement, PopoverPrimitive.PopoverTriggerProps >(function PopoverTrigger({ ...props }, ref) { return }) Popover.Portal = PopoverPrimitive.Portal Popover.Content = React.forwardRef< HTMLDivElement, PopoverPrimitive.PopoverContentProps >(function PopoverContent({ className, ...props }, ref) { return ( ) })