UNPKG

react-aspect-ratio

Version:

React Component to maintain a consistent width-to-height ratio (aspect ratio), preventing cumulative layout shift.

5 lines (4 loc) 236 B
/// <reference types="react" /> import type { Props } from './types'; declare const AspectRatio: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export default AspectRatio;