Balloon icon
#fluent-icon The Balloon icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Balloon icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { Balloon24Regular, Balloon24Filled } from "@fluentui/react-icons";
export function Example() {
return <Balloon24Regular aria-label="Balloon" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_balloon_24_regular.svg" width="24" height="24" alt="Balloon"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.0177 5.6645C12.1126 5.26132 12.5165 5.01144 12.9196 5.10638C14.388 5.45214 15.5426 6.60459 15.8915 8.07167C15.9873 8.47464 15.7383 8.87901 15.3353 8.97484C14.9324 9.07068 14.528 8.82169 14.4322 8.41872C14.2146 7.50369 13.4916 6.78209 12.5758 6.56644C12.1726 6.4715 11.9228 6.06769 12.0177 5.6645ZM5 9C5 5.13401 8.13401 2 12 2C15.866 2 19 5.13401 19 9C19 11.025 18.3305 13.2357 17.1504 14.9556C16.1075 16.4755 14.6069 17.687 12.75 17.9479V18.25C12.75 18.6642 13.0858 19 13.5 19H16.75C17.9926 19 19 20.0074 19 21.25V22.25C19 22.6642 18.6642 23 18.25 23C17.8358 23 17.5 22.6642 17.5 22.25V21.25C17.5 20.8358 17.1642 20.5 16.75 20.5H13.5C12.2574 20.5 11.25 19.4926 11.25 18.25V17.9479C9.39312 17.687 7.89247 16.4755 6.84958 14.9556C5.66952 13.2357 5 11.025 5 9ZM12 3.5C8.96243 3.5 6.5 5.96243 6.5 9C6.5 10.7251 7.0795 12.6393 8.08644 14.1069C9.09356 15.5748 10.4527 16.5 12 16.5C13.5473 16.5 14.9064 15.5748 15.9136 14.1069C16.9205 12.6393 17.5 10.7251 17.5 9C17.5 5.96243 15.0376 3.5 12 3.5Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/balloon_24_regular.svg";Details
| Name | Balloon |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_balloon_24_regular.svg |
| Filled file | ic_fluent_balloon_24_filled.svg |
| React components | Balloon24Regular, Balloon24Filled |
| License | MIT (© Microsoft Corporation) |