File "notice.js"

Full Path: /home/warrior1/public_html/wp-content/plugins/elementor/app/modules/onboarding/assets/js/components/notice.js
File size: 349 bytes
MIME-type: text/plain
Charset: utf-8

export default function Notice( props ) {
	return (
		<div className={ `e-onboarding__notice e-onboarding__notice--${ props.noticeState.type }` }>
			<i className={ props.noticeState.icon } />
			<span className="e-onboarding__notice-text">{ props.noticeState.message }</span>
		</div>
	);
}

Notice.propTypes = {
	noticeState: PropTypes.object,
};