import "./Tooltip.scss"; import React from "react"; type TooltipProps = { children: React.ReactNode; label: string; position?: "above" | "below"; long?: boolean; }; export const Tooltip = ({ children, label, position = "below", long = false, }: TooltipProps) => (