UNPKG

shadcn-react

Version:
7 lines (6 loc) 348 B
/// <reference types="react" /> import { PopoverContentProps, PopoverProps as UiPopoverProps } from '@radix-ui/react-popover'; export interface PopoverProps extends UiPopoverProps, Omit<PopoverContentProps, 'content'> { content?: React.ReactNode; } export declare function Popover(props: PopoverProps): import("react/jsx-runtime").JSX.Element;