import * as React from "react"; import { Box } from "./Box"; import { CommonStyleProps } from "./system/unions"; export type AspectRatioProps = CommonStyleProps & React.HTMLAttributes & { aspectRatio: number; }; export const AspectRatio = ({ aspectRatio = 1, children, }: AspectRatioProps) => { const percent = `${(1 / aspectRatio) * 100}%`; return ( {children} ); }; AspectRatio.displayName = "AspectRatio";