softicons.dev

leaf icon

Free leaf SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons weather 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="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.5 19 2c1 2 2 4.2 2 8a7 7 0 0 1-7 7Z"/>
  <path d="M2 21c0-3 1.85-5.6 4.5-7"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/weather/leaf.svg"
     width="24" height="24" alt="leaf icon">

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

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

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

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