mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01: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;
|