@senka-ai/ui
Version:
A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns
10 lines • 406 B
TypeScript
import type { BaseProps, ExtendedSizedComponent, StatusComponent } from '../../type/component';
interface Props extends BaseProps, ExtendedSizedComponent, StatusComponent {
src?: string;
alt?: string;
initials?: string;
}
declare const Avatar: import("svelte").Component<Props, {}, "">;
type Avatar = ReturnType<typeof Avatar>;
export default Avatar;
//# sourceMappingURL=Avatar.svelte.d.ts.map