import React from 'react'; export interface IModalTitle { className?: string; children: any; [x: string]: any; } export const ModalTitle: React.FC = (props) => { const { children, className = '', ...otherProps } = props; return ( {children} ); };