Megaphone icon
Used to represent general announcements and news. The Megaphone 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 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 { Megaphone24Regular, Megaphone24Filled } from "@fluentui/react-icons";
export function Example() {
return <Megaphone24Regular aria-label="Megaphone" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_megaphone_24_regular.svg" width="24" height="24" alt="Megaphone"> 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="M21.9068 5.62236C21.9686 5.83039 22 6.04627 22 6.26329V17.7387C22 18.9813 20.9926 19.9887 19.75 19.9887C19.5329 19.9887 19.317 19.9573 19.1089 19.8954L13.595 18.2558C12.9378 19.6008 11.5584 20.4994 10 20.4994C7.8578 20.4994 6.10892 18.8155 6.0049 16.6991L6 16.4994L5.999 15.9987L3.60891 15.288C2.65446 15.0043 2 14.127 2 13.1313V10.8693C2 9.87356 2.65455 8.99622 3.60908 8.71256L19.1091 4.1065C20.3002 3.75253 21.5528 4.4312 21.9068 5.62236ZM7.499 16.4447L7.5 16.4994C7.5 17.8801 8.61929 18.9994 10 18.9994C10.8852 18.9994 11.6783 18.5352 12.1238 17.82L7.499 16.4447ZM19.5364 5.54436L4.03636 10.1504C3.71818 10.245 3.5 10.5374 3.5 10.8693V13.1313C3.5 13.4632 3.71815 13.7556 4.0363 13.8502L19.5363 18.4576C19.6057 18.4782 19.6776 18.4887 19.75 18.4887C20.1642 18.4887 20.5 18.1529 20.5 17.7387V6.26329C20.5 6.19095 20.4895 6.11899 20.4689 6.04964C20.3509 5.65259 19.9334 5.42637 19.5364 5.54436Z" 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_24_regular.svg";Details
| Name | Megaphone |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_megaphone_24_regular.svg |
| Filled file | ic_fluent_megaphone_24_filled.svg |
| React components | Megaphone24Regular, Megaphone24Filled |
| License | MIT (© Microsoft Corporation) |