softicons.dev

briefcase key icon

Free briefcase key SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce 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">
  <rect x="2" y="7" width="20" height="14" rx="2.5"/>
  <path d="M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/>
  <line x1="2" y1="13" x2="22" y2="13"/>
  <circle cx="11.1" cy="17.9" r="1"/>
  <path d="M11.8 17.2 14 15"/>
  <path d="M12.9 16.1 13.5 16.7"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/briefcase-key.svg"
     width="24" height="24" alt="briefcase key icon">

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

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

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

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