autumn-js
Version:
Autumn JS Library
12 lines (9 loc) • 632 B
TypeScript
import * as React from 'react';
import * as PopoverPrimitive from '@radix-ui/react-popover';
declare const Popover: typeof PopoverPrimitive.Root;
declare const PopoverTrigger: typeof PopoverPrimitive.Trigger;
declare const PopoverAnchor: typeof PopoverPrimitive.Anchor;
type PopoverContentRef = React.ElementRef<typeof PopoverPrimitive.Content>;
type PopoverContentProps = React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>;
declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<PopoverContentRef>>;
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger };