mouse pointer click icon
Free mouse pointer click 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="m9 9 5 12 1.8-5.2L21 14Z"/>
<path d="M7.2 2.2 8 5.1"/>
<path d="m5.1 8-2.9-.8"/>
<path d="M14 4.1 12 6"/>
<path d="m6 12-1.9 2"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/mouse-pointer-click.svg"
width="24" height="24" alt="mouse pointer click icon">
<!-- …or paste the raw SVG from the SVG tab -->import { MousePointerClickIcon } from "@softicons/react";
export default function Example() {
return <MousePointerClickIcon size={24} strokeWidth={2} />;
}<script setup>
import { MousePointerClickIcon } from "@softicons/vue";
</script>
<template>
<MousePointerClickIcon :size="24" :stroke-width="2" />
</template>import { MousePointerClickIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [MousePointerClickIconComponent],
template: `<mouse-pointer-click-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}