UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 342 B
import type { HtmlIngredientProps } from '../types.js'; export interface RatingGroupLabelProps extends HtmlIngredientProps<'label', HTMLLabelElement> { } declare const RatingGroupLabel: import("svelte").Component<RatingGroupLabelProps, {}, "ref">; type RatingGroupLabel = ReturnType<typeof RatingGroupLabel>; export default RatingGroupLabel;