| 2 | import { MikeIcon } from "@/components/chat/mike-icon"; |
| 3 | |
| 4 | interface SiteLogoProps { |
| 5 | size?: "sm" | "md" | "lg" | "xl"; |
| 6 | className?: string; |
| 7 | iconClassName?: string; |
| 8 | animate?: boolean; |
| 9 | asLink?: boolean; |
| 10 | } |
| 11 | |
| 12 | export function SiteLogo({ |
| 13 | size = "md", |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…