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