UNPKG

@easy-shadcn/react

Version:

Use shadcn/ui easy&enhance like component library

11 lines (8 loc) 370 B
import { ReactNode, PropsWithChildren } from 'react'; import { PopoverProps as PopoverProps$1, PopoverContentProps } from '@radix-ui/react-popover'; interface PopoverProps extends PopoverProps$1 { content: ReactNode; contentProps?: PopoverContentProps; } declare const Popover: React.FC<PropsWithChildren<PopoverProps>>; export { Popover, type PopoverProps };