Sound Wave Circle icon
Used in sound & audio file scenarios. The Sound Wave 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 Sound Wave 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 { SoundWaveCircle24Regular, SoundWaveCircle24Filled } from "@fluentui/react-icons";
export function Example() {
return <SoundWaveCircle24Regular aria-label="Sound Wave Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_sound_wave_circle_24_regular.svg" width="24" height="24" alt="Sound Wave 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="M11 8.75C11 8.33579 10.6642 8 10.25 8C9.83579 8 9.5 8.33579 9.5 8.75V15.25C9.5 15.6642 9.83579 16 10.25 16C10.6642 16 11 15.6642 11 15.25V8.75ZM17 8.75C17 8.33579 16.6642 8 16.25 8C15.8358 8 15.5 8.33579 15.5 8.75V15.25C15.5 15.6642 15.8358 16 16.25 16C16.6642 16 17 15.6642 17 15.25V8.75ZM14 10.25C14 9.83579 13.6642 9.5 13.25 9.5C12.8358 9.5 12.5 9.83579 12.5 10.25V13.75C12.5 14.1642 12.8358 14.5 13.25 14.5C13.6642 14.5 14 14.1642 14 13.75V10.25ZM8 10.75C8 10.3358 7.66421 10 7.25 10C6.83579 10 6.5 10.3358 6.5 10.75V13.25C6.5 13.6642 6.83579 14 7.25 14C7.66421 14 8 13.6642 8 13.25V10.75ZM12 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 2ZM3.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 12Z" 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/sound_wave_circle_24_regular.svg";Details
| Name | Sound Wave Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_sound_wave_circle_24_regular.svg |
| Filled file | ic_fluent_sound_wave_circle_24_filled.svg |
| React components | SoundWaveCircle24Regular, SoundWaveCircle24Filled |
| License | MIT (© Microsoft Corporation) |