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