softicons.dev

blocks icon

Free blocks 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">
  <rect x="14" y="3" width="7" height="7" rx="1"/>
  <path d="M10 21V8a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-5a1 1 0 0 0-1-1H3"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/blocks.svg"
     width="24" height="24" alt="blocks icon">

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

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

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

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