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