UNPKG

@senka-ai/ui

Version:

A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns

9 lines 437 B
import type { BaseProps, VariantComponent, IconComponent, InteractiveHandlers } from '../../type/component'; interface Props extends BaseProps, VariantComponent<'primary' | 'secondary' | 'tertiary'>, IconComponent, InteractiveHandlers { text: string; iconSize?: number; } declare const Tag: import("svelte").Component<Props, {}, "">; type Tag = ReturnType<typeof Tag>; export default Tag; //# sourceMappingURL=Tag.svelte.d.ts.map