import "./Tooltip.scss"; import React from "react"; type TooltipProps = { children: React.ReactNode; label: string; }; export const Tooltip = ({ children, label }: TooltipProps) => (
{label} {children}
);