????

Your IP : 18.116.67.230


Current Path : /home/webcloude/www/wp-content/plugins/cartflows/wizard/assets/src/fields/
Upload File :
Current File : /home/webcloude/www/wp-content/plugins/cartflows/wizard/assets/src/fields/Tooltip.js

import React from 'react';
import parse from 'html-react-parser';
import './Tooltip.scss';
import { QuestionMarkCircleIcon } from '@heroicons/react/24/outline';
import classnames from 'classnames';

function Tooltip( props ) {
	const {
		text,
		position = 'default',
		classes = 'text-gray-400',
		descClass = '',
		icon = '',
	} = props;
	return (
		<div
			className={ classnames(
				classes,
				'wcf-tooltip-icon cursor-pointer ml-1',
				'default' !== position
					? 'wcf-tooltip-position--' + position
					: ''
			) }
		>
			{ '' === icon ? (
				<QuestionMarkCircleIcon className={ `w-4 h-4 stroke-2` } />
			) : (
				icon
			) }

			{ '' !== text && (
				<span className={ `wcf-tooltip-text ${ descClass }` }>
					{ typeof text === 'string' ? parse( text ) : text }
				</span>
			) }
		</div>
	);
}

export default Tooltip;