import React from "react"; interface ITooltipWrapperProps { children: string; tipContent: string; position?: "top" | "bottom"; } const baseClass = "component__tooltip-wrapper"; const TooltipWrapper = ({ children, tipContent, position = "bottom", }: ITooltipWrapperProps): JSX.Element => { return (
{children}
); }; export default TooltipWrapper;