mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-03 22:19:28 +00:00
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import './Tooltip.css';
|
|
|
|
const Tooltip = props => (
|
|
<div data-tooltip={props.text} className={`tooltip-custom ${props.type || ''}`}></div>
|
|
);
|
|
|
|
Tooltip.propTypes = {
|
|
text: PropTypes.string.isRequired,
|
|
type: PropTypes.string,
|
|
};
|
|
|
|
export default Tooltip;
|