UNPKG

@sitecore/sc-contenthub-blok

Version:

A UI library for [Sitecore Content Hub](https://doc.sitecore.com/ch/).

14 lines (13 loc) 554 B
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>; } export declare const BlokImage: FC<BlokImageProps>;