softicons.dev

thumbs down icon

Free thumbs down 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="M17 2h2a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2h-2Z"/>
  <path d="M17 13 12.8 21.1A2.4 2.4 0 0 1 9 19v-4H4.3a2 2 0 0 1-2-2.4l1.5-7A2 2 0 0 1 5.8 4H17Z"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/thumbs-down.svg"
     width="24" height="24" alt="thumbs down icon">

<!-- …or paste the raw SVG from the SVG tab -->
import { ThumbsDownIcon } from "@softicons/react";

export default function Example() {
  return <ThumbsDownIcon size={24} strokeWidth={2} />;
}
<script setup>
import { ThumbsDownIcon } from "@softicons/vue";
</script>

<template>
  <ThumbsDownIcon :size="24" :stroke-width="2" />
</template>
import { ThumbsDownIconComponent } from "@softicons/angular";

@Component({
  standalone: true,
  imports: [ThumbsDownIconComponent],
  template: `<thumbs-down-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}