import React from 'react'; import { RiErrorWarningFill } from 'react-icons/ri'; const Tooltip = ({ text }: { text: string }): JSX.Element => { return (
{text}
); }; export default Tooltip;