File "dialog-title.js"

Full Path: /home/warrior1/public_html/wp-content/plugins/elementor/app/assets/js/ui/dialog/dialog-title.js
File size: 391 bytes
MIME-type: text/x-java
Charset: utf-8

import Heading from 'elementor-app/ui/atoms/heading';

export default function DialogTitle( props ) {
	return (
		<Heading
			{ ...props }
			className={ `eps-dialog__title ${ props.className }` }
		/>
	);
}

DialogTitle.propTypes = {
	...Heading.propTypes,
	className: PropTypes.string,
};

DialogTitle.defaultProps = {
	...Heading.propTypes,
	variant: 'h3',
	tag: 'h3',
	className: '',
};