1 | import * as React from 'react';
|
2 | import { BsPrefixProps } from './helpers';
|
3 | export type AspectRatio = '1x1' | '4x3' | '16x9' | '21x9' | string;
|
4 | export interface RatioProps extends BsPrefixProps, React.HTMLAttributes<HTMLDivElement> {
|
5 | children: React.ReactChild;
|
6 | aspectRatio?: AspectRatio | number;
|
7 | }
|
8 | declare const Ratio: React.ForwardRefExoticComponent<RatioProps & React.RefAttributes<HTMLDivElement>>;
|
9 | export default Ratio;
|