softicons.dev

clipboard key icon

Free clipboard key SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons files 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="8" y="3" width="8" height="4" rx="1.4"/>
  <path d="M16 5h2a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"/>
  <circle cx="10.96" cy="14.54" r="1.15"/>
  <path d="M11.77 13.73 14.3 11.2"/>
  <path d="M13.04 12.46 13.72 13.15"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/files/clipboard-key.svg"
     width="24" height="24" alt="clipboard key icon">

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

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

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

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