@amaui/ui-react
Version:
UI for React
17 lines (16 loc) • 502 B
TypeScript
import React from 'react';
import { ISection } from '../Section/Section';
import { IMediaObject, IPropsAny } from '../types';
export interface ISectionMedia extends ISection {
value?: IMediaObject;
size?: 'small' | 'regular' | 'large';
name?: boolean;
IconDocument?: any;
MediaProps?: IPropsAny;
ImageProps?: IPropsAny;
AudioProps?: IPropsAny;
VideoProps?: IPropsAny;
OtherProps?: IPropsAny;
}
declare const Element: React.FC<ISectionMedia>;
export default Element;