Reading Mode Mobile icon
Used to represent a collection of content for phone. The Reading Mode Mobile 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 Reading Mode Mobile 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 { ReadingModeMobile24Regular, ReadingModeMobile24Filled } from "@fluentui/react-icons";
export function Example() {
return <ReadingModeMobile24Regular aria-label="Reading Mode Mobile" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_reading_mode_mobile_24_regular.svg" width="24" height="24" alt="Reading Mode Mobile"> 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.7499 2.00098C18.9407 2.00098 19.9155 2.92614 19.9947 4.09693L19.9999 4.25098V19.749C19.9999 20.9399 19.0747 21.9147 17.9039 21.9939L17.7499 21.999H6.25C5.05914 21.999 4.08436 21.0739 4.00519 19.9031L4 19.749V4.25098C4 3.06011 4.92516 2.08533 6.09595 2.00617L6.25 2.00098H17.7499ZM17.7499 3.50098H6.25C5.8703 3.50098 5.55651 3.78313 5.50685 4.14921L5.5 4.25098V19.749C5.5 20.1287 5.78215 20.4425 6.14823 20.4922L6.25 20.499H17.7499C18.1296 20.499 18.4434 20.2169 18.493 19.8508L18.4999 19.749V4.25098C18.4999 3.87128 18.2177 3.55749 17.8516 3.50782L17.7499 3.50098ZM12.2481 12.9973C12.6623 12.9973 12.9981 13.3331 12.9981 13.7473C12.9981 14.127 12.7159 14.4408 12.3498 14.4905L12.2481 14.4973H7.74994C7.33572 14.4973 6.99994 14.1615 6.99994 13.7473C6.99994 13.3676 7.28209 13.0538 7.64817 13.0042L7.74994 12.9973H12.2481ZM16.2499 9.99866C16.6642 9.99866 16.9999 10.3344 16.9999 10.7487C16.9999 11.1284 16.7178 11.4421 16.3517 11.4918L16.2499 11.4987H7.74994C7.33572 11.4987 6.99994 11.1629 6.99994 10.7487C6.99994 10.369 7.28209 10.0552 7.64817 10.0055L7.74994 9.99866H16.2499ZM16.2499 7.00001C16.6642 7.00001 16.9999 7.3358 16.9999 7.75001C16.9999 8.12971 16.7178 8.4435 16.3517 8.49316L16.2499 8.50001H7.74994C7.33572 8.50001 6.99994 8.16422 6.99994 7.75001C6.99994 7.37031 7.28209 7.05652 7.64817 7.00686L7.74994 7.00001H16.2499Z" 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/reading_mode_mobile_24_regular.svg";Details
| Name | Reading Mode Mobile |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_reading_mode_mobile_24_regular.svg |
| Filled file | ic_fluent_reading_mode_mobile_24_filled.svg |
| React components | ReadingModeMobile24Regular, ReadingModeMobile24Filled |
| License | MIT (© Microsoft Corporation) |