Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export class MediaBody<
  4. As extends React.ElementType = 'div'
  5. > extends BsPrefixComponent<As> {}
  6. declare class Media<
  7. As extends React.ElementType = 'div'
  8. > extends BsPrefixComponent<As> {
  9. static Body: typeof MediaBody;
  10. }
  11. export default Media;