'use client'; interface LogoProps { width?: number; height?: number; className?: string; } // Letter fill uses `currentColor` (driven by Tailwind `text-*`/`dark:text-*`); // background uses `--logo-bg` var so theme inversion works without prop plumbing. export function Logo({ width = 64, height = 64, className }: LogoProps) { return ( ); }