@amaui/ui-react
Version:
UI for React
29 lines (28 loc) • 925 B
TypeScript
import React from 'react';
import { ISection } from '../Section/Section';
import { IValueBreakpoints, IPropsAny } from '../types';
export interface ISectionTextMedia extends ISection {
title?: string | Partial<Record<IValueBreakpoints, string>>;
description?: string | Partial<Record<IValueBreakpoints, string>>;
button?: {
text?: any;
to?: string;
link?: string;
props?: any;
};
mediaPosition?: 'top' | 'left' | 'right' | 'bottom';
media?: any;
MainProps?: IPropsAny;
TitleProps?: IPropsAny;
WrapperProps?: IPropsAny;
WrapperMainProps?: IPropsAny;
WrapperTextProps?: IPropsAny;
DescriptionProps?: IPropsAny;
MediaProps?: IPropsAny;
ImageProps?: IPropsAny;
AudioProps?: IPropsAny;
VideoProps?: IPropsAny;
OtherProps?: IPropsAny;
}
declare const SectionTextMedia: React.FC<ISectionTextMedia>;
export default SectionTextMedia;