Megaphone Circle icon
Used to represent general announcements and news. The Megaphone Circle 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 Megaphone Circle 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 { MegaphoneCircle24Regular, MegaphoneCircle24Filled } from "@fluentui/react-icons";
export function Example() {
return <MegaphoneCircle24Regular aria-label="Megaphone Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_megaphone_circle_24_regular.svg" width="24" height="24" alt="Megaphone Circle"> 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="M3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C16.6944 3.5 20.5 7.30558 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12ZM12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM14.6402 7.1072C15.783 6.68444 16.9973 7.52996 16.9973 8.7485V15.2485C16.9973 16.467 15.783 17.3125 14.6402 16.8898L13.0779 16.3119C12.7006 17.299 11.7447 18 10.625 18C9.17525 18 8 16.8247 8 15.375V14.4335L7.13896 14.115C6.45211 13.8609 5.99609 13.206 5.99609 12.4737V11.5233C5.99609 10.7909 6.4521 10.136 7.13896 9.88196L14.6402 7.1072ZM9.5 14.9884V15.375C9.5 15.9963 10.0037 16.5 10.625 16.5C11.0993 16.5 11.505 16.2065 11.6705 15.7912L9.5 14.9884ZM15.4973 8.7485C15.4973 8.57443 15.3238 8.45364 15.1606 8.51403L7.65936 11.2888C7.56124 11.3251 7.49609 11.4186 7.49609 11.5233V12.4737C7.49609 12.5783 7.56124 12.6719 7.65936 12.7082L15.1606 15.4829C15.3238 15.5433 15.4973 15.4225 15.4973 15.2485V8.7485Z" 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/megaphone_circle_24_regular.svg";Details
| Name | Megaphone Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_megaphone_circle_24_regular.svg |
| Filled file | ic_fluent_megaphone_circle_24_filled.svg |
| React components | MegaphoneCircle24Regular, MegaphoneCircle24Filled |
| License | MIT (© Microsoft Corporation) |