UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

11 lines (10 loc) 269 B
import { type FC, type ReactNode } from 'react'; interface PopoverPanelProps { alt?: string; children?: ReactNode; title?: string; url?: string; usePopover?: boolean; } declare const PopoverPanel: FC<PopoverPanelProps>; export default PopoverPanel;