/**
 * Notice
 *
 * Inline message block. One convention for every tab: evas-notice--<type>.
 *
 * @package Everyone_Accessibility_Suite
 */

function Notice({ type = 'info', children }) {
	return (
		<div className={`evas-notice evas-notice--${type}`}>
			{children}
		</div>
	);
}

export default Notice;
