diamond key icon
Free diamond key SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons interface 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="M12 2 22 12 12 22 2 12Z"/>
<circle cx="10.83" cy="13.17" r="1.3"/>
<path d="M11.74 12.26 14.6 9.4"/>
<path d="M13.17 10.83 13.95 11.61"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/diamond-key.svg"
width="24" height="24" alt="diamond key icon">
<!-- …or paste the raw SVG from the SVG tab -->import { DiamondKeyIcon } from "@softicons/react";
export default function Example() {
return <DiamondKeyIcon size={24} strokeWidth={2} />;
}<script setup>
import { DiamondKeyIcon } from "@softicons/vue";
</script>
<template>
<DiamondKeyIcon :size="24" :stroke-width="2" />
</template>import { DiamondKeyIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [DiamondKeyIconComponent],
template: `<diamond-key-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}