softicons.dev

heading 3 icon

Free heading 3 SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface 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">
  <path d="M4 12h8"/>
  <path d="M4 18V6"/>
  <path d="M12 18V6"/>
  <path d="M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"/>
  <path d="M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/heading-3.svg"
     width="24" height="24" alt="heading 3 icon">

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

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

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

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