Sound Wave Circle Add icon
The Sound Wave Circle Add 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 Add 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 { SoundWaveCircleAdd24Regular, SoundWaveCircleAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <SoundWaveCircleAdd24Regular aria-label="Sound Wave Circle Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_sound_wave_circle_add_24_regular.svg" width="24" height="24" alt="Sound Wave Circle Add"> 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="M17.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM12 2C17.5228 2 22 6.47715 22 12C22 12.2623 21.9866 12.5221 21.9668 12.7793C21.5287 12.3646 21.0333 12.0102 20.4932 11.7295C20.3503 7.16029 16.6039 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6039 7.16029 20.3503 11.7295 20.4932C12.0102 21.0333 12.3646 21.5287 12.7793 21.9668C12.5221 21.9866 12.2623 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM17.5 13.999C17.2239 13.999 17.0001 14.223 17 14.499V17H14.4951C14.2195 17.0003 13.9961 17.224 13.9961 17.5C13.9961 17.776 14.2195 17.9997 14.4951 18H17.001V20.5039C17.0012 20.7798 17.225 21.0038 17.501 21.0039C17.777 21.0039 18.0008 20.7799 18.001 20.5039V18H20.4971C20.7727 17.9997 20.9961 17.776 20.9961 17.5C20.9961 17.224 20.7727 17.0003 20.4971 17H18V14.499C17.9999 14.223 17.7761 13.999 17.5 13.999ZM10.25 8C10.6642 8 11 8.33579 11 8.75V15.25C11 15.6642 10.6642 16 10.25 16C9.83579 16 9.5 15.6642 9.5 15.25V8.75C9.5 8.33579 9.83579 8 10.25 8ZM7.25 10C7.66421 10 8 10.3358 8 10.75V13.25C8 13.6642 7.66421 14 7.25 14C6.83579 14 6.5 13.6642 6.5 13.25V10.75C6.5 10.3358 6.83579 10 7.25 10ZM13.25 9.5C13.6642 9.5 14 9.83579 14 10.25V12.0244C13.4345 12.3866 12.9278 12.8322 12.5 13.3467V10.25C12.5 9.83579 12.8358 9.5 13.25 9.5ZM16.25 8C16.6642 8 17 8.33579 17 8.75V11.0205C16.4805 11.06 15.9782 11.1599 15.5 11.3145V8.75C15.5 8.33579 15.8358 8 16.25 8Z" 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_add_24_regular.svg";Details
| Name | Sound Wave Circle Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_sound_wave_circle_add_24_regular.svg |
| Filled file | ic_fluent_sound_wave_circle_add_24_filled.svg |
| React components | SoundWaveCircleAdd24Regular, SoundWaveCircleAdd24Filled |
| License | MIT (© Microsoft Corporation) |