v8-ui-components
Version:
A component lib for v8 storefront apps
20 lines (19 loc) • 639 B
TypeScript
import { ContentAlign, IImageSize } from "../HeroBanner/HeroBanner.interfaces";
import { IThemeInterface } from "v8-theme-interfaces/lib/theme.interfaces";
export interface ICmsExtraLargeBanner2StyledProps {
imageAlignment?: ContentAlign;
}
export interface IPageTopper505SplitProps {
ButtonText: string;
BodyText: string;
Link: string;
ImageAlignment?: "left" | "right";
BannerImageSizes: IImageSize;
TextAlignment: ContentAlign;
HeadingText: string;
DarkStyle: boolean;
}
export interface ICmsExtraLargeBanner2ContentStyledProps {
theme: IThemeInterface;
isDark: boolean;
}