softicons.dev

minimize 2 icon

Free minimize 2 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">
  <polyline points="4 14 10 14 10 20"/>
  <polyline points="20 10 14 10 14 4"/>
  <line x1="14" y1="10" x2="21" y2="3"/>
  <line x1="3" y1="21" x2="10" y2="14"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/minimize-2.svg"
     width="24" height="24" alt="minimize 2 icon">

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

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

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

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