hand icon
Free hand 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="M18 11V7a1.5 1.5 0 0 0-3 0"/>
<path d="M15 7V5a1.5 1.5 0 0 0-3 0v2"/>
<path d="M12 7V5.5a1.5 1.5 0 0 0-3 0V11"/>
<path d="M9 11V8.5a1.5 1.5 0 0 0-3 0v6a7 7 0 0 0 7 7h1a7 7 0 0 0 7-7v-3"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/hand.svg"
width="24" height="24" alt="hand icon">
<!-- …or paste the raw SVG from the SVG tab -->import { HandIcon } from "@softicons/react";
export default function Example() {
return <HandIcon size={24} strokeWidth={2} />;
}<script setup>
import { HandIcon } from "@softicons/vue";
</script>
<template>
<HandIcon :size="24" :stroke-width="2" />
</template>import { HandIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [HandIconComponent],
template: `<hand-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}