@sitecore/sc-contenthub-blok
Version:
A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).
16 lines • 670 B
TypeScript
import { type FC, type MouseEventHandler } from "react";
export interface BlokImageProps {
src: string;
alt: string;
style?: object;
width?: string | number;
height?: string | number;
fit?: "contain" | "cover" | "fill" | "none" | "scale-down" | "inherit" | "initial" | "revert" | "unset";
position?: "static" | "relative" | "absolute" | "fixed" | "sticky" | "inherit" | "initial" | "revert" | "unset";
className?: string;
onClick?: MouseEventHandler<HTMLElement>;
loading?: "eager" | "lazy";
fetchPriority?: "high" | "low" | "auto";
}
export declare const BlokImage: FC<BlokImageProps>;
//# sourceMappingURL=BlokImage.d.ts.map