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