mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
24 lines
520 B
TypeScript
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;
|