v8-ui-components
Version:
A component lib for v8 storefront apps
24 lines (23 loc) • 930 B
TypeScript
import { ContentAlign, IImageSize } from "../../LargeComponents/HeroBanner/HeroBanner.interfaces";
import { IThemeInterface } from "v8-theme-interfaces/lib/theme.interfaces";
import { IContainerChildProps } from "../../LargeComponents/TwoBannerContainer/TwoBannerContainer.interfaces";
export interface ISmallImageWithContentWrapperStyledProps {
textAlignment: ContentAlign;
theme: IThemeInterface;
}
export interface ISmallImageWithContentContainerStyledProps {
columns?: number;
}
export interface IStackedContentBlockWrapperStyledProps extends IContainerChildProps {
theme: IThemeInterface;
}
export interface ISmallImageWithContentProps extends IContainerChildProps {
ContentAlignment: ContentAlign;
ImagePropsSizes: IImageSize;
ImagePropsAltText: string;
LinkUrl: string;
HeadingText: string;
SubHeadingText?: string;
ButtonText: string;
Link: string;
}