UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

14 lines (13 loc) 481 B
import { SkeletonRectProps } from "./Skeleton.Rect.js"; export type SkeletonCardImageProps = SkeletonRectProps & { /** Aspect ratio (default '16/9') */ aspectRatio?: string; }; /** * Loading placeholder for Card.Image */ declare const SkeletonCardImage: import("react").ForwardRefExoticComponent<SkeletonRectProps & { /** Aspect ratio (default '16/9') */ aspectRatio?: string; } & import("react").RefAttributes<HTMLDivElement>>; export default SkeletonCardImage;