UNPKG

@yamada-ui/popover

Version:

Yamada UI popover component

15 lines (12 loc) 572 B
import * as _yamada_ui_motion from '@yamada-ui/motion'; import { MotionPropsWithoutChildren } from '@yamada-ui/motion'; import { HTMLUIProps } from '@yamada-ui/core'; import { PropsWithChildren } from 'react'; interface PopoverContentProps extends MotionPropsWithoutChildren<"section">, PropsWithChildren { /** * The props of the container element. */ containerProps?: Omit<HTMLUIProps, "children">; } declare const PopoverContent: _yamada_ui_motion.MotionComponent<"section", PopoverContentProps>; export { PopoverContent, type PopoverContentProps };