"use client"; import { type ComponentPropsWithoutRef, type ComponentRef, forwardRef, } from "react"; import { Popover as PopoverPrimitive } from "radix-ui"; import { type ScopedProps, usePopoverScope } from "./scope"; export namespace AssistantModalPrimitiveAnchor { export type Element = ComponentRef; export type Props = ComponentPropsWithoutRef; } export const AssistantModalPrimitiveAnchor = forwardRef< AssistantModalPrimitiveAnchor.Element, AssistantModalPrimitiveAnchor.Props >( ( { __scopeAssistantModal, ...rest }: ScopedProps, ref, ) => { const scope = usePopoverScope(__scopeAssistantModal); return ; }, ); AssistantModalPrimitiveAnchor.displayName = "AssistantModalPrimitive.Anchor";