import { cn } from "~/utils/cn"; import { Badge } from "./primitives/Badge"; import { SimpleTooltip } from "./primitives/Tooltip"; export function V4Badge({ inline = false, className }: { inline?: boolean; className?: string }) { return ( V4 } content="This feature is only available in V4 and above." disableHoverableContent /> ); } export function V4Title({ children }: { children: React.ReactNode }) { return ( <> {children} ); }