"use client" import { Shuffle } from "lucide-react" import NovaOrb from "./nova-orb" import { cn } from "@lib/utils" /** Nova orb with a corner badge — Auto mode (Nova picks across spaces). */ export function AutoSpaceIcon({ size = 20, className, }: { size?: number className?: string }) { const badgeSize = Math.max(10, Math.round(size * 0.5)) const badgeIcon = Math.max(6, Math.round(badgeSize * 0.55)) return ( ) }