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

12 lines 446 B
import type { BaseProps, ExtendedSizedComponent, BadgeType, BadgeVariant } from '../../type/component'; interface Props extends BaseProps, ExtendedSizedComponent { type?: BadgeType; variant?: BadgeVariant; value?: number | string; icon?: any; max?: number; } declare const Badge: import("svelte").Component<Props, {}, "">; type Badge = ReturnType<typeof Badge>; export default Badge; //# sourceMappingURL=Badge.svelte.d.ts.map