File "icon.js"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/elementor/app/assets/js/ui/atoms/icon.js
File size: 216 bytes
MIME-type: text/plain
Charset: utf-8

export default function Icon( props ) {
	return (
		<i className={ `eps-icon ${ props.className }` } />
	);
}

Icon.propTypes = {
	className: PropTypes.string.isRequired,
};

Icon.defaultProps = {
	className: '',
};