softicons.dev

mail check icon

Free mail check 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"/>
  <polyline points="16 19 18 21 22 17"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/mail-check.svg"
     width="24" height="24" alt="mail check icon">

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

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

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

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