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