37 lines
713 B
JavaScript
37 lines
713 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import './Tooltip.scss';
|
|
import Tippy from '@tippyjs/react';
|
|
|
|
function Tooltip({
|
|
className, placement, content, children,
|
|
}) {
|
|
return (
|
|
<Tippy
|
|
content={content}
|
|
className={`tooltip ${className}`}
|
|
touch="hold"
|
|
arrow={false}
|
|
maxWidth={250}
|
|
placement={placement}
|
|
delay={[0, 0]}
|
|
duration={[100, 0]}
|
|
>
|
|
{children}
|
|
</Tippy>
|
|
);
|
|
}
|
|
|
|
Tooltip.defaultProps = {
|
|
placement: 'top',
|
|
className: '',
|
|
};
|
|
|
|
Tooltip.propTypes = {
|
|
className: PropTypes.string,
|
|
placement: PropTypes.string,
|
|
content: PropTypes.node.isRequired,
|
|
children: PropTypes.node.isRequired,
|
|
};
|
|
|
|
export default Tooltip;
|