UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 433 B
import type { ItemProps, ItemState } from '@zag-js/radio-group'; import type { Assign, HtmlIngredientProps } from '../types.js'; export interface RadioGroupItemProps extends Assign<HtmlIngredientProps<'label', HTMLLabelElement, ItemState>, ItemProps> { } declare const RadioGroupItem: import("svelte").Component<RadioGroupItemProps, {}, "ref">; type RadioGroupItem = ReturnType<typeof RadioGroupItem>; export default RadioGroupItem;