UNPKG

381 BTypeScriptView Raw
1import * as React from "react";
2import { BoxProps } from "../Box";
3
4interface IAspectRatio {
5 /**
6 * The aspect ratio of the Box. Common values are:
7 *
8 * `21/9`, `16/9`, `9/16`, `4/3`, `1.85/1`
9 */
10 ratio?: number;
11}
12
13export type AspectRatioBoxProps = IAspectRatio & BoxProps;
14declare const AspectRatioBox: React.FC<AspectRatioBoxProps>;
15
16export default AspectRatioBox;