softicons.dev

message square key icon

Free message square key 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 15a2 2 0 0 1-2 2H8l-5 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2Z"/>
  <circle cx="10.92" cy="11.08" r="1.2"/>
  <path d="M11.76 10.24 14.4 7.6"/>
  <path d="M13.08 8.92 13.8 9.64"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/communication/message-square-key.svg"
     width="24" height="24" alt="message square key icon">

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

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

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

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