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