@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
18 lines • 625 B
TypeScript
import type React from 'react';
import { BoxProps } from '@mui/material';
interface WizardSectionTitleProps extends BoxProps {
heading?: string;
headingComponent?: React.ElementType;
headingVariant?: 'h1' | 'h2' | 'h3' | 'h4';
copy?: string;
copyAlign?: 'center' | 'left';
copyVariant?: 'h1' | 'h2' | 'h3' | 'h4' | 'body1' | 'body2';
iconSrc?: string;
iconAlt?: string;
iconWidth?: string;
width?: string;
bookend?: boolean;
}
declare const WizardSectionTitle: React.FC<WizardSectionTitleProps>;
export default WizardSectionTitle;
//# sourceMappingURL=wizard-section-title.d.ts.map