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