@fuxui/base
Version:
ui kit - svelte 5 + tailwind 4 - base components
13 lines (12 loc) • 500 B
TypeScript
import type { HTMLImgAttributes } from 'svelte/elements';
import type { WithElementRef, WithoutChildrenOrChild } from 'bits-ui';
export type ImageProps = WithoutChildrenOrChild<WithElementRef<HTMLImgAttributes, HTMLImageElement>> & {
useThemeColor?: boolean;
containerClasses?: string;
blur?: boolean;
showNormalOnHover?: boolean;
alt: string;
};
declare const Image: import("svelte").Component<ImageProps, {}, "ref">;
type Image = ReturnType<typeof Image>;
export default Image;