softicons.dev

mail open icon

Free mail open SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons communication 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="M21 10.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-8.5a2 2 0 0 1 .9-1.7l8-5.3a2 2 0 0 1 2.2 0l8 5.3a2 2 0 0 1 .9 1.7Z"/>
  <polyline points="3 10.5 12 16 21 10.5"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/mail-open.svg"
     width="24" height="24" alt="mail open icon">

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

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

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

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