@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
13 lines (12 loc) • 325 B
TypeScript
type $$ComponentProps = {
src: string;
alt: string;
title: string;
description?: string;
href?: string;
onclick?: () => void;
class?: string;
};
declare const ImageCard: import("svelte").Component<$$ComponentProps, {}, "">;
type ImageCard = ReturnType<typeof ImageCard>;
export default ImageCard;