UNPKG

@theme-ui/components

Version:

Primitive layout, typographic, and other components for use with Theme UI.

11 lines (10 loc) 355 B
import { BoxProps } from "./Box.js"; import type { ForwardRef } from "./types.js"; export interface AspectRatioProps extends BoxProps { ratio?: number; } /** * Component for maintaining a fluid-width aspect ratio * @see https://theme-ui.com/components/aspect-ratio */ export declare const AspectRatio: ForwardRef<HTMLDivElement, AspectRatioProps>;