softicons.dev

balloon icon

Free balloon 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="M12 2a6 6 0 0 0-6 6c0 4 3 7 6 8 3-1 6-4 6-8a6 6 0 0 0-6-6Z"/>
  <path d="M12 16v2"/>
  <path d="M11 18c0 1 2 1 2 2.5S11.5 22 12 22"/>
</svg>
<!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/interface/balloon.svg"
     width="24" height="24" alt="balloon icon">

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

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

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

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