wix-style-react
Version:
21 lines (16 loc) • 553 B
TypeScript
import * as React from 'react';
export type PreviewWidgetSkin = 'neutral' | 'gradient' | 'custom';
export type PreviewWidgetContentOutline = 'shadow' | 'border' | 'none';
export interface PreviewWidgetProps {
dataHook?: string;
className?: string;
skin?: PreviewWidgetSkin;
contentOutline?: PreviewWidgetContentOutline;
backgroundColor?: string;
height?: string;
width?: string;
scrollable?: boolean;
children: React.ReactNode;
}
declare const PreviewWidget: React.ComponentClass<PreviewWidgetProps>;
export default PreviewWidget;