/** * PlayerBarGlass — Glassmorphism container (KŌDŌ v3) * backdrop-blur + semantic tokens + gradient overlay + noise texture * Spotify/Discord-grade polish with accent gradient, top-edge highlight, and noise depth */ import { cn } from '@/lib/utils'; interface PlayerBarGlassProps { children: React.ReactNode; isHovered: boolean; className?: string; } export function PlayerBarGlass({ children, isHovered, className, }: PlayerBarGlassProps) { return (
{children} {/* Top-edge highlight line — 1px gradient shimmer */}
{/* Accent gradient overlay — subtle radial glow from bottom-center */}
{/* Subtle accent tint on hover — SUMI */}
); }