Icons

Code icon

Compare 25 free code icons from 25 open-source libraries and pick the one that matches your design system. Every icon on this page downloads as an editable SVG or a transparent PNG at any size from 16px to 512px — no login, no account, no attribution required.

All 25 free code icons

Library comparison

Which library should you use?

LibraryStyleLicenseCode icon
Ant Design Icons Fill MIT Code
Bootstrap Icons Fill MIT Code
Boxicons Outline MIT Code
Carbon Icons Fill Apache 2.0 Code
CSS.gg Outline MIT Code
Eva Icons Bold MIT Code Fill
Feather Outline MIT Code
Fluent UI Icons Bold MIT Code 16 Filled
Heroicons Bold MIT Code Solid
Huge Icons Outline MIT Code
Iconoir Outline MIT Code
IconPark Outline Outline Apache 2.0 Code
Ionicons Fill MIT Code
Lucide Outline ISC Code
Material Design Icons Fill Apache 2.0 Code
Material Symbols Fill Apache 2.0 Code
Material Symbols Light Light Apache 2.0 Code
Mingcute Bold Apache 2.0 Code Fill
Octicons Outline MIT Code
Phosphor Outline MIT Code
Pixel Art Icons Fill MIT Code
Radix Icons Outline MIT Code
Remix Icons Bold Apache 2.0 Code Fill
Solar Icons Bold CC BY 4.0 Code Bold
Tabler Icons Outline MIT Code

Outline sets such as Lucide, Tabler and Feather stay legible at 16px in dense interfaces. Material Symbols and Bootstrap Icons give you matched outline and filled pairs. Phosphor, Solar and Fluent add duotone, bold and weight-graded variants when you need more visual hierarchy.

Use this icon in your project

Inline SVG (copy & paste)

Paste this straight into HTML or JSX. It inherits currentColor, so it follows your theme.

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="24" height="24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" role="img" aria-label="code icon"><path fill="currentColor" d="M516 673c0 4.4 3.4 8 7.5 8h185c4.1 0 7.5-3.6 7.5-8v-48c0-4.4-3.4-8-7.5-8h-185c-4.1 0-7.5 3.6-7.5 8zm-194.9 6.1l192-161c3.8-3.2 3.8-9.1 0-12.3l-192-160.9A7.95 7.95 0 0 0 308 351v62.7c0 2.4 1 4.6 2.9 6.1L420.7 512l-109.8 92.2a8.1 8.1 0 0 0-2.9 6.1V673c0 6.8 7.9 10.5 13.1 6.1M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32m-40 728H184V184h656z"/></svg>

React component

Install the package for the library you picked, then import the component.

npm install @ant-design/icons

import { Code } from "@ant-design/icons";

export function Example() {
  return <Code size={24} />;
}

Choosing the right code icon

Match the icon to the interface

A code icon has to read instantly at whatever size your interface uses. Below 20px, prefer outline artwork with a consistent stroke weight — heavy filled glyphs turn into blobs. For navigation bars and empty states above 32px, filled or duotone versions carry more visual weight and scan better.

Keep stroke weight consistent across every icon in a view. Mixing a 1.5px Lucide glyph with a 2px Tabler glyph in the same toolbar is the most common reason icon sets look unprofessional.

Accessibility

Decorative icons need aria-hidden="true" so screen readers skip them. If the code icon is the only thing labelling a control — an icon-only button, for example — give the button an aria-label such as "Code" and leave the SVG itself hidden.

Never rely on the icon alone to convey state. Pair it with a tooltip or visible text wherever the meaning is not already obvious from context.

Related icon searches

Libraries on this page

Frequently asked questions

Where can I download a free code icon?

IconStash indexes 25 free code icons from 25 open-source libraries, including Ant Design, Bootstrap, Boxicons, Carbon, CSS.gg. Choose one on this page, set the exact size and colour, then copy the SVG markup or download a transparent PNG. No account and no login are required.

Are these code icons free for commercial use?

Yes. Every icon on this page comes from an open-source library published under a permissive licence (MIT, Apache-2.0, ISC, CC BY 4.0 and similar), all of which allow commercial use. The comparison table above lists the licence for each library so you can confirm the exact terms before shipping.

Can I download a code icon as a PNG?

Yes. Open any icon on this page, set an exact pixel size between 16px and 512px, choose any colour, and download a transparent PNG. Because every icon here is a vector, the exported PNG stays sharp at any resolution — IconStash also offers a ZIP pack containing 16, 24, 32, 48, 64, 128, 256 and 512px files.

Which library has the best code icon?

It depends on the design system you are matching. Outline libraries such as Lucide, Tabler and Feather suit dense product interfaces; Material Symbols and Bootstrap Icons ship matched outline and filled variants of the same glyph; Phosphor and Solar add duotone, bold and broken weights. The grid above shows all 25 options side by side so you can judge them at real size.

How do I add a code icon to a React app?

Copy the SVG markup for any icon on this page and paste it directly into JSX, or install the official npm package for the library you picked — lucide-react, @tabler/icons-react, @phosphor-icons/react, react-bootstrap-icons and react-icons are the most common. Both approaches are shown in the code samples above.

What sizes and styles do code icons come in?

All 25 icons on this page are vector artwork, so they scale cleanly to any size. The libraries represented here render the code concept in fill, outline, bold, light styles, and IconStash can export PNGs at 16, 24, 32, 48, 64, 128, 256 or 512px, or any custom value in between.

Can I change the colour of a code icon?

Yes. Icons are exported using currentColor, so they inherit the CSS colour of their parent element and follow your theme automatically. You can also pick an exact hex colour in the IconStash editor before downloading, or override the colour with a CSS rule such as .icon { color: #C1DD2D; }.