softicons.dev

pin off icon

Free pin off 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="M12 17v5"/>
  <path d="M15 9.3V4a1 1 0 0 0-1-1h-4"/>
  <path d="M9 5v5.8a2 2 0 0 1-.6 1.4l-1.1 1.1a1 1 0 0 0-.3.7v.5a1 1 0 0 0 1 1h7"/>
  <line x1="2" y1="2" x2="22" y2="22"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/pin-off.svg"
     width="24" height="24" alt="pin off icon">

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

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

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

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