mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
449 B
TypeScript
10 lines
449 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface ResponsiveEmbedProps extends BsPrefixPropsWithChildren {
|
|
children: React.ReactChild;
|
|
aspectRatio?: '21by9' | '16by9' | '4by3' | '1by1';
|
|
}
|
|
declare type ResponsiveEmbed = BsPrefixRefForwardingComponent<'div', ResponsiveEmbedProps>;
|
|
declare const ResponsiveEmbed: ResponsiveEmbed;
|
|
export default ResponsiveEmbed;
|