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