Remix Add icon
Used to represent general video content scenarios. The Remix 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 Remix 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 { RemixAdd24Regular, RemixAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <RemixAdd24Regular aria-label="Remix Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_remix_add_24_regular.svg" width="24" height="24" alt="Remix 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="M2 2.75C2 2.33579 2.33579 2 2.75 2H12C17.5228 2 22 6.47715 22 12C22 14.9867 20.6906 17.6679 18.6146 19.5002H16.0036C18.6795 18.0688 20.5 15.2471 20.5 12.0002C20.5 7.8214 17.4844 4.34689 13.5107 3.63409C13.0204 3.54613 12.5156 3.5 12 3.5H2.75C2.33579 3.5 2 3.16421 2 2.75ZM10.3616 21.8664C10.8947 21.9543 11.442 22 12 22H21.25C21.6642 22 22 21.6642 22 21.25C22 20.8358 21.6642 20.5 21.25 20.5H12C8.92203 20.5 6.22575 18.8637 4.73414 16.4137C3.95105 15.1272 3.5 13.6164 3.5 12.0002C3.5 8.75335 5.3205 5.93166 7.99645 4.50024H5.38544C3.30939 6.3326 2 9.0135 2 12.0002C2 16.9651 5.61812 21.0847 10.3616 21.8664ZM12 8C12.4142 8 12.75 8.33579 12.75 8.75V11.25H15.25C15.6642 11.25 16 11.5858 16 12C16 12.4142 15.6642 12.75 15.25 12.75H12.75V15.25C12.75 15.6642 12.4142 16 12 16C11.5858 16 11.25 15.6642 11.25 15.25V12.75H8.75C8.33579 12.75 8 12.4142 8 12C8 11.5858 8.33579 11.25 8.75 11.25H11.25V8.75C11.25 8.33579 11.5858 8 12 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/remix_add_24_regular.svg";Details
| Name | Remix Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_remix_add_24_regular.svg |
| Filled file | ic_fluent_remix_add_24_filled.svg |
| React components | RemixAdd24Regular, RemixAdd24Filled |
| License | MIT (© Microsoft Corporation) |