File "indicator-bullet.js"

Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js
File size: 281 bytes
MIME-type: text/x-java
Charset: utf-8

import './indicator-bullet.scss';

export const Indicator = ( props ) => {
	let className = 'eps-indicator-bullet';

	if ( props.active ) {
		className += ` ${ className }--active`;
	}

	return <i className={ className } />;
};

Indicator.propTypes = {
	active: PropTypes.bool,
};