import React from "react"; import {classes} from "../../Utils"; import {Info} from "@phosphor-icons/react"; /** * Simple text tip component. */ export function Tip({className, children, ...props}: React.PropsWithChildren>) { return (

{children}

); }