wix-style-react
Version:
19 lines (16 loc) • 536 B
TypeScript
import * as React from 'react';
export interface MarketingLayoutProps {
dataHook?: string;
image?: React.ReactNode;
imageBackgroundColor?: string;
size?: 'tiny' | 'small' | 'medium' | 'large';
direction?: 'horizontal' | 'vertical';
inverted?: boolean;
actions?: React.ReactNode;
title?: React.ReactNode;
description?: React.ReactNode;
badge?: React.ReactNode;
hiddenBadge?: boolean;
alignItems?: 'center' | 'stretch';
}
export default class MarketingLayout extends React.PureComponent<MarketingLayoutProps> {}