softicons.dev

mail plus icon

Free mail plus 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.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h9"/>
  <path d="m3 7 9 6 9-6"/>
  <line x1="19" y1="16" x2="19" y2="22"/>
  <line x1="16" y1="19" x2="22" y2="19"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/mail-plus.svg"
     width="24" height="24" alt="mail plus icon">

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

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

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

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