mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
441 B
TypeScript
10 lines
441 B
TypeScript
import * as React from 'react';
|
|
import { BsPrefixProps } from './helpers';
|
|
export declare type AspectRatio = '1x1' | '4x3' | '16x9' | '21x9' | string;
|
|
export interface RatioProps extends BsPrefixProps, React.HTMLAttributes<HTMLDivElement> {
|
|
children: React.ReactChild;
|
|
aspectRatio?: AspectRatio | number;
|
|
}
|
|
declare const Ratio: React.ForwardRefExoticComponent<RatioProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default Ratio;
|