softicons.dev

microchip icon

Free microchip SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons devices set.

Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
     fill="none" stroke="currentColor" stroke-width="2"
     stroke-linecap="round" stroke-linejoin="round">
  <rect x="6" y="6" width="12" height="12" rx="2"/>
  <path d="M9 2v2"/>
  <path d="M15 2v2"/>
  <path d="M9 20v2"/>
  <path d="M15 20v2"/>
  <path d="M20 9h2"/>
  <path d="M20 14h2"/>
  <path d="M2 9h2"/>
  <path d="M2 14h2"/>
  <rect x="10" y="10" width="4" height="4"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/devices/microchip.svg"
     width="24" height="24" alt="microchip icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { MicrochipIcon } from "@softicons/react";

export default function Example() {
  return <MicrochipIcon size={24} strokeWidth={2} />;
}
<script setup>
import { MicrochipIcon } from "@softicons/vue";
</script>

<template>
  <MicrochipIcon :size="24" :stroke-width="2" />
</template>
import { MicrochipIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [MicrochipIconComponent],
  template: `<microchip-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}