/** * GitHub brand mark — inlined because lucide-react v1 removed all brand icons. * Filled path + `fill="currentColor"` so it inherits color from CSS like the * lucide icon it replaced. Decorative (`aria-hidden`); label the parent link. */ interface GithubIconProps { size?: number; } export function GithubIcon({ size = 24 }: GithubIconProps) { return ( ); }