softicons.dev

school icon

Free school SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce 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 6 8-4 8 4"/>
  <path d="m18 10 4 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8l4-2"/>
  <path d="M14 22v-4a2 2 0 0 0-4 0v4"/>
  <path d="M18 5v17"/>
  <path d="M6 5v17"/>
  <circle cx="12" cy="9" r="2"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/school.svg"
     width="24" height="24" alt="school icon">

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

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

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

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