import React, { memo, FC } from 'react'; import style from './index.module.scss'; export type tooltip = { title: string; icon: React.ReactNode; styleCss?: React.CSSProperties; }; const Index: FC = memo(function Index({ title, icon, styleCss }) { return (
<>{icon}
{title}
); }); export default Index;