@senka-ai/ui
Version:
A modern, type-safe Svelte 5 UI component library with full theme support, accessibility standards, and robust state management patterns
17 lines • 635 B
TypeScript
import type { BaseProps, ChildrenComponent, ClickHandler } from '../../type/component';
interface Props extends BaseProps, ChildrenComponent, ClickHandler {
title: string;
subtitle?: string;
image?: string;
imageAlt?: string;
iconType?: 'image' | 'custom';
buttonText?: string;
showAction?: boolean;
actionType?: 'button' | 'arrow';
iconColor?: string;
onButtonClick?: () => void;
}
declare const CardHorizontal: import("svelte").Component<Props, {}, "">;
type CardHorizontal = ReturnType<typeof CardHorizontal>;
export default CardHorizontal;
//# sourceMappingURL=CardHorizontal.svelte.d.ts.map