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