A react component for fixed aspect ratio layout in responsive design.
yarn add r-aspect-ratioclass App extends React.Component {
  render() {
    return (
      <div className="App">
        <AspectRatio width="16%" ratio={1.6} className="Box" />
        <br />
        <AspectRatio
          width="32%"
          ratio={1}
          className="Box"
          minWidth={100}
          maxWidth={160}
        />
      </div>
    )
  }
}AspectRatio Props:
interface IProps {
  ratio: number            // height to width ratio in float
  width?: number | string  // px or %
  minWidth?: number        // px
  maxWidth?: number        // px
  className?: string       // className pass to root div
  children?: React.ReactNode
}