GoScrobble/web/node_modules/reactstrap/es/Media.d.ts

24 lines
520 B
TypeScript

import * as React from 'react';
import { CSSModule } from './index';
export interface MediaProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
body?: boolean;
bottom?: boolean;
cssModule?: CSSModule;
heading?: boolean;
left?: boolean;
list?: boolean;
middle?: boolean;
object?: boolean;
right?: boolean;
tag?: React.ElementType;
top?: boolean;
src?: string;
href?: string;
alt?: string;
}
declare class Media extends React.Component<MediaProps> {}
export default Media;