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