'use client' import { cn } from '@/lib/utils' interface SimLogoProps { className?: string } /** * Sim logo with icon and text. * The icon stays green (#33C482), text adapts to light/dark mode. */ export function SimLogo({ className }: SimLogoProps) { return ( {/* Green icon - top left shape with cutout */} {/* Green icon - bottom right square */} {/* Gradient overlay on bottom right square */} ) } /** * Full Sim logo with icon and "Sim" text. * The icon stays green (#33C482), text adapts to light/dark mode. */ export function SimLogoFull({ className }: SimLogoProps) { return ( {/* Green icon - top left shape with cutout */} {/* Green icon - bottom right square */} {/* Gradient overlay on bottom right square */} {/* "Sim" text - adapts to light/dark mode via currentColor */} ) }