heading 5 icon
Free heading 5 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 13v-3h4"/>
<path d="M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/heading-5.svg"
width="24" height="24" alt="heading 5 icon">
<!-- …or paste the raw SVG from the SVG tab -->import { Heading5Icon } from "@softicons/react";
export default function Example() {
return <Heading5Icon size={24} strokeWidth={2} />;
}<script setup>
import { Heading5Icon } from "@softicons/vue";
</script>
<template>
<Heading5Icon :size="24" :stroke-width="2" />
</template>import { Heading5IconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [Heading5IconComponent],
template: `<heading-5-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}