UNPKG

shadcn-react

Version:
7 lines (6 loc) 367 B
/// <reference types="react" /> import { HoverCardContentProps, HoverCardProps as UiHoverCardProps } from '@radix-ui/react-hover-card'; export interface HoverCardProps extends UiHoverCardProps, Omit<HoverCardContentProps, 'content'> { content?: React.ReactNode; } export declare function HoverCard(props: HoverCardProps): import("react/jsx-runtime").JSX.Element;