mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
16 lines
334 B
TypeScript
16 lines
334 B
TypeScript
import * as React from 'react';
|
|
|
|
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface ResponsiveEmbedProps {
|
|
children: React.ReactChild;
|
|
aspectRatio?: '21by9' | '16by9' | '4by3' | '1by1';
|
|
}
|
|
|
|
declare class ResponsiveEmbed extends BsPrefixComponent<
|
|
'div',
|
|
ResponsiveEmbedProps
|
|
> {}
|
|
|
|
export default ResponsiveEmbed;
|