import type { LucideProps } from "lucide-react"; /* FNXC:Navigation 2026-06-22-12:00: Import Tasks uses the GitHub brand mark. lucide-react in this repo does not export a `Github` icon, so render the octocat glyph as a LucideProps-compatible component (size defaults to 16, currentColor fill) usable wherever a sidebar entry icon is expected. Shared across LeftSidebarNav (sidebar entry icon) and GitHubImportModal (embedded header) to avoid duplicating the raw octocat SVG path; keep the same rendered output (viewBox 0 0 24 24, currentColor fill, aria-hidden). */ export function GithubIcon({ size = 16, ...props }: LucideProps) { return ( ); }