shadcn-react
Version:
A simple wrapper for shadcn/ui
7 lines (6 loc) • 367 B
TypeScript
/// <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;