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 TreeViewLabelProps extends HtmlIngredientProps<'span', HTMLSpanElement> {
}
declare const TreeViewLabel: import("svelte").Component<TreeViewLabelProps, {}, "ref">;
type TreeViewLabel = ReturnType<typeof TreeViewLabel>;
export default TreeViewLabel;