1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-12 21:55:14 +00:00
Files
pocket-id/frontend/src/lib/components/ui/popover/index.ts
2025-01-19 15:41:16 +01:00

18 lines
368 B
TypeScript

import { Popover as PopoverPrimitive } from 'bits-ui';
import Content from './popover-content.svelte';
const Root = PopoverPrimitive.Root;
const Trigger = PopoverPrimitive.Trigger;
const Close = PopoverPrimitive.Close;
export {
Root,
Content,
Trigger,
Close,
//
Root as Popover,
Content as PopoverContent,
Trigger as PopoverTrigger,
Close as PopoverClose
};