UNPKG

wix-style-react

Version:
25 lines (21 loc) 600 B
import * as React from 'react'; export interface SectionHelperProps { dataHook?: string; appearance?: SectionHelperAppearance; title?: React.ReactNode; size?: 'small' | 'medium'; showCloseButton?: boolean; onClose?: React.MouseEventHandler<HTMLElement>; onAction?: React.MouseEventHandler<HTMLElement>; actionText?: string; fullWidth?: boolean; } export default class SectionHelper extends React.PureComponent<SectionHelperProps> {} export type SectionHelperAppearance = | 'warning' | 'standard' | 'danger' | 'success' | 'premium' | 'preview' | 'experimentalDark';