@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 • 524 B
TypeScript
import type { CardComponent } from '../../type/component';
interface Props extends CardComponent {
image?: string;
imageAlt?: string;
icon?: any;
buttonText?: string;
showAction?: boolean;
actionType?: 'button' | 'arrow';
favorite?: boolean;
iconColor?: string;
onButtonClick?: () => void;
onFavoriteClick?: () => void;
}
declare const Card: import("svelte").Component<Props, {}, "">;
type Card = ReturnType<typeof Card>;
export default Card;
//# sourceMappingURL=Card.svelte.d.ts.map