softicons.dev

aperture icon

Free aperture 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">
  <circle cx="12" cy="12" r="9"/>
  <line x1="14.3" y1="9" x2="20.7" y2="9"/>
  <line x1="13.1" y1="6.9" x2="16.4" y2="1.3"/>
  <line x1="9.7" y1="9" x2="6.4" y2="3.4"/>
  <line x1="9.7" y1="15" x2="3.3" y2="15"/>
  <line x1="10.9" y1="17.1" x2="7.6" y2="22.7"/>
  <line x1="14.3" y1="15" x2="17.6" y2="20.6"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/aperture.svg"
     width="24" height="24" alt="aperture icon">

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

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

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

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