import { ExclamationCircleIcon } from "@heroicons/react/24/solid"; import clsx from "clsx"; import type { ReactNode } from "react"; import { Tooltip } from "../Tooltip"; type Props = { children: ReactNode; className?: string | undefined; }; export const ErrorTooltip = ({ className, children }: Props) => (
{children}
);