UNPKG

@szum-tech/design-system

Version:

Szum-Tech design system with tailwindcss support

18 lines (12 loc) 1.04 kB
export { P as Popover, a as PopoverContent, b as PopoverContentProps, c as PopoverProps, d as PopoverTrigger, e as PopoverTriggerProps } from '../../popover-trigger-k9HHK6Iv.js'; import * as React from 'react'; import { Popover } from 'radix-ui'; type PopoverAnchorProps = React.ComponentProps<typeof Popover.Anchor>; declare function PopoverAnchor(props: PopoverAnchorProps): React.JSX.Element; type PopoverHeaderProps = React.ComponentProps<"div">; declare function PopoverHeader({ className, ...props }: PopoverHeaderProps): React.JSX.Element; type PopoverTitleProps = React.ComponentProps<"h2">; declare function PopoverTitle({ className, ...props }: PopoverTitleProps): React.JSX.Element; type PopoverDescriptionProps = React.ComponentProps<"p">; declare function PopoverDescription({ className, ...props }: PopoverDescriptionProps): React.JSX.Element; export { PopoverAnchor, type PopoverAnchorProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverTitle, type PopoverTitleProps };