wrench icon
Free wrench 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="M14.5 5.5a4 4 0 0 1 4.8 5.2L21 12l-2 2-1.3-1.7a4 4 0 0 1-5.2-4.8l2 2 1.4-1.4Z"/>
<path d="m13 9-8 8a2.1 2.1 0 0 0 3 3l8-8"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/wrench.svg"
width="24" height="24" alt="wrench icon">
<!-- …or paste the raw SVG from the SVG tab -->import { WrenchIcon } from "@softicons/react";
export default function Example() {
return <WrenchIcon size={24} strokeWidth={2} />;
}<script setup>
import { WrenchIcon } from "@softicons/vue";
</script>
<template>
<WrenchIcon :size="24" :stroke-width="2" />
</template>import { WrenchIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [WrenchIconComponent],
template: `<wrench-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}