@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
12 lines (11 loc) • 417 B
TypeScript
import type { PropsFor } from "../../types.js";
export type CardImageProps = PropsFor<"div", {
/** Image URL */
url: string;
/** Static height */
height?: string | number;
/** Aspect ratio (default '16/9') */
aspectRatio?: string;
}>;
declare const CardImage: import("react").ForwardRefExoticComponent<CardImageProps & import("react").RefAttributes<HTMLDivElement>>;
export default CardImage;