UNPKG

baseui

Version:

A React Component library implementing the Base design language

9 lines (8 loc) 454 B
import * as React from 'react'; import type { StyledBlockProps, BlockProps } from '../block'; interface AspectRatioBoxBodyComponentType<D extends React.ElementType> { <C extends React.ElementType = D>(props: BlockProps<C> & Omit<StyledBlockProps & React.ComponentProps<C>, keyof BlockProps>): JSX.Element; displayName?: string; } export declare const AspectRatioBoxBody: AspectRatioBoxBodyComponentType<"div">; export default AspectRatioBoxBody;