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