UNPKG

v8-ui-components

Version:

A component lib for v8 storefront apps

21 lines (20 loc) 887 B
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 ISmallBannerWithBackgroundImageStyledProps extends IContainerChildProps { imageSizes: IImageSize; contentAlignment: ContentAlign; theme: IThemeInterface; } export interface IStandardContentBlock1HeadingProps extends IContainerChildProps { contentAlignment: ContentAlign; } export interface ISmallBannerWithBackgroundImageProps extends IContainerChildProps { ContentAlignment: ContentAlign; HeadingText: string; ButtonText: string; Link: string; LinkUrl: string; ImagePropsSizes: IImageSize; ImagePropsAltText: string; }