UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

15 lines (14 loc) 458 B
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; }>; /** * Image banner element for Card */ declare const CardImage: import("react").ForwardRefExoticComponent<CardImageProps & import("react").RefAttributes<HTMLDivElement>>; export default CardImage;