fingerprint icon
Free fingerprint 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="M5 8a8 8 0 0 1 14 0"/>
<path d="M8 14c0 3-.5 5-1.5 7"/>
<path d="M12 11v3c0 3-.5 5.5-1.5 8"/>
<path d="M16 14c0 3 .5 5 1.5 7"/>
<path d="M9 10a3 3 0 0 1 6 0"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/fingerprint.svg"
width="24" height="24" alt="fingerprint icon">
<!-- …or paste the raw SVG from the SVG tab -->import { FingerprintIcon } from "@softicons/react";
export default function Example() {
return <FingerprintIcon size={24} strokeWidth={2} />;
}<script setup>
import { FingerprintIcon } from "@softicons/vue";
</script>
<template>
<FingerprintIcon :size="24" :stroke-width="2" />
</template>import { FingerprintIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [FingerprintIconComponent],
template: `<fingerprint-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}