UNPKG

baseui

Version:

A React Component library implementing the Base design language

7 lines (6 loc) 272 B
import type * as React from 'react'; import type { BlockProps } from '../block'; export type AspectRatioBoxProps<T extends React.ElementType = React.ElementType> = { /** Aspect ratio is width divided by height. */ readonly aspectRatio?: number; } & BlockProps<T>;