import { cn } from "~/utils/cn"; import { Badge } from "./primitives/Badge"; import { SimpleTooltip } from "./primitives/Tooltip"; export function AlphaBadge({ inline = false, className, }: { inline?: boolean; className?: string; }) { return ( Alpha } content="This feature is in Alpha" disableHoverableContent /> ); } export function AlphaTitle({ children }: { children: React.ReactNode }) { return ( <> {children} ); } export function BetaBadge({ inline = false, className }: { inline?: boolean; className?: string }) { return ( Beta } content="This feature is in Beta" disableHoverableContent /> ); } export function BetaTitle({ children }: { children: React.ReactNode }) { return ( <> {children} ); } export function NewBadge({ inline = false, className }: { inline?: boolean; className?: string }) { return ( New ); }