import React from 'react'; import { Icon, Tooltip } from 'UI'; interface Props { className: string; onClick: () => void; icon: string; tooltip: string; } function WidgetIcon(props: Props) { const { className, onClick, icon, tooltip } = props; return (
{/* @ts-ignore */}
); } export default WidgetIcon;