import * as React from "react"; import styled from "styled-components"; import Tooltip from "~/components/Tooltip"; type Props = { /** The content to display in the tooltip. */ content?: string; children?: React.ReactNode; }; const WrappedTooltip: React.FC = ({ children, content }: Props) => ( {children} ); const TooltipContent = styled.span` outline: none; `; export default WrappedTooltip;