UNPKG

449 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
3export interface ResponsiveEmbedProps extends BsPrefixPropsWithChildren {
4 children: React.ReactChild;
5 aspectRatio?: '21by9' | '16by9' | '4by3' | '1by1';
6}
7declare type ResponsiveEmbed = BsPrefixRefForwardingComponent<'div', ResponsiveEmbedProps>;
8declare const ResponsiveEmbed: ResponsiveEmbed;
9export default ResponsiveEmbed;