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) 116 B
/// <reference types="react" /> export type Props = React.ComponentProps<'div'> & { ratio?: string | number; };