Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ResponsiveEmbed.d.ts 334B

123456789101112131415
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface ResponsiveEmbedProps {
  4. children: React.ReactChild;
  5. aspectRatio?: '21by9' | '16by9' | '4by3' | '1by1';
  6. }
  7. declare class ResponsiveEmbed extends BsPrefixComponent<
  8. 'div',
  9. ResponsiveEmbedProps
  10. > {}
  11. export default ResponsiveEmbed;