import clsx from "clsx";
import { FC, HTMLAttributes } from "react";
import { v4 as uuidv4 } from "uuid";
import { LabelChip } from "@dndbeyond/ttui/components/LabelChip";
import { Link } from "../Link";
import styles from "./styles.module.css";
interface LegacyBadgeProps extends HTMLAttributes {
variant?: "margin-left";
}
export const LegacyBadge: FC = ({
variant,
className,
...props
}) => (
This doesn't reflect the latest rules and lore.{" "}
{}} //TODO - can fix this after we refactor Link to not stop propgation inside the component
>
Learn More
}
tooltipClickable
{...props}
>
Legacy
);