Copy code import type { SVGProps } from "react";
export type IconProps = {
size?: number | string;
color?: string;
className?: string;
} & SVGProps<SVGSVGElement>;
export const GithubCopilot = ({
size = 24,
color = "currentColor",
className,
...props
}: IconProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={size}
height={size}
fill={color}
className={className}
{...props}
>
<path d="M18.04 6.33c1.09 1.16 1.56 2.75 1.76 4.97.52 0 1 .12 1.33.56l.61.83c.17.23.27.52.27.81v2.24c0 .29-.14.57-.38.74-2.76 2.02-6.16 3.64-9.62 3.64-3.83 0-7.67-2.21-9.62-3.64a.98.98 0 0 1-.38-.74V13.5c0-.3.09-.58.27-.82l.61-.82c.33-.45.81-.56 1.33-.56.2-2.22.66-3.81 1.76-4.97 2.08-2.2 4.84-2.45 6.01-2.45h.03c1.15 0 3.94.23 6.04 2.45ZM12 10.03c-.23 0-.51.02-.8.05-.07.35-.24.67-.47.95-.67.66-1.56 1.02-2.5 1.02-.53 0-1.09-.12-1.54-.41-.43.15-.84.35-.88.86-.04.95-.05 1.91-.05 2.88 0 .48 0 .96-.02 1.45 0 .28.17.54.43.66 2.06.94 4.02 1.41 5.82 1.41s3.75-.47 5.82-1.41c.26-.12.43-.37.43-.66.02-1.44 0-2.89-.06-4.32-.03-.52-.45-.71-.87-.86-.45.29-1.02.4-1.54.4-.93 0-1.83-.35-2.5-1.01-.23-.27-.39-.6-.47-.95-.27-.03-.54-.04-.8-.05Zm-2.11 3.44c.45 0 .82.36.82.81v1.5c0 .45-.36.81-.81.81s-.81-.36-.81-.81v-1.51c0-.45.36-.81.81-.81Zm4.17 0c.45 0 .81.36.81.81v1.5c0 .45-.36.81-.81.81s-.81-.36-.81-.81v-1.51c0-.45.37-.81.81-.81Zm-5.7-7.38c-.87.09-1.61.37-1.98.78-.81.88-.64 3.13-.17 3.61.46.39 1.05.59 1.66.56.53 0 1.53-.12 2.35-.95.37-.35.59-1.23.56-2.11-.02-.71-.23-1.3-.52-1.55-.33-.28-1.06-.41-1.89-.34Zm5.39.34c-.3.25-.5.84-.52 1.55-.02.88.2 1.76.56 2.11.62.62 1.47.96 2.34.95.7 0 1.33-.23 1.66-.56.47-.48.64-2.73-.17-3.62-.38-.39-1.11-.69-1.98-.77-.83-.08-1.56.05-1.89.34M12 8.26c-.2 0-.44.02-.7.04.03.13.04.29.05.45 0 .12 0 .23-.02.35.25-.02.47-.02.66-.02s.41 0 .66.02c-.02-.12-.02-.23-.02-.35.02-.16.02-.31.05-.45-.27-.02-.5-.04-.7-.04Z" />
</svg>
);Default · 24px · currentColor
UI examples Size, inline, toolbar, and dark UI — works for any icon style.
Github Copilot Icon — Free SVG Component The Github Copilot icon is a free, open-source SVG icon component built with TypeScript for React, Next.js, Vue, Remix, Svelte, and Astro projects. No npm install or package dependency required — just copy the component code and paste it into your project.
How to use Github Copilot icon in React Import the Github Copilot component from your icons folder. Use it as a standard React component with props: size (number), color (string), className (string), and all standard SVG attributes via spread props.
Example: <Github Copilot size={24} color=“currentColor“ className=“shrink-0“ />
Features Zero dependencies — no package install needed TypeScript ready with full type safety Fully customizable size, color, and className Works with Tailwind CSS, styled-components, CSS modules Accessible — supports aria attributes Tree-shakeable — only import what you use MIT licensed — free for commercial use Compatible frameworks React, Next.js (App Router & Pages Router), Vue, Remix, Svelte, Astro, Nuxt, Gatsby, Vite, Angular, Qwik.
Category: ai Browse more ai icons in the Next Icons library. All icons are hand-crafted SVGs optimized for web performance.