ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 320 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface PopoverAnchorProps extends HtmlIngredientProps<'div', HTMLDivElement> {
}
declare const PopoverAnchor: import("svelte").Component<PopoverAnchorProps, {}, "ref">;
type PopoverAnchor = ReturnType<typeof PopoverAnchor>;
export default PopoverAnchor;