immersive-reader-32-regular from Fluent UI System Icons by Microsoft Corporation · 32 Regular · MIT Free for personal and commercial use.

Name
immersive-reader-32-regular
Set
Fluent UI System Icons
Style
32 Regular
Viewbox
32×32
License
MIT

12 other variants in Fluent UI System Icons

Use the immersive reader icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M26.802 17.053a1 1 0 0 1 .7.023c.131.082 2.998 1.86 2.998 6.392s-2.868 6.311-2.998 6.391a1 1 0 0 1-.51.141a.996.996 0 0 1-.946-.749a1.01 1.01 0 0 1 .457-1.12v-.001c.082-.054 1.998-1.335 1.998-4.662c0-3.347-1.918-4.624-1.998-4.674a1.005 1.005 0 0 1 .299-1.741m-5.71.904a.748.748 0 0 1 .904.747v9.537a.76.76 0 0 1-.47.698a.745.745 0 0 1-.82-.175l-2.708-2.783h-1.249c-.331 0-.649-.133-.883-.369a1.26 1.26 0 0 1-.366-.888V22.21c0-.333.132-.652.366-.888c.234-.235.552-.368.883-.368h1.249l2.708-2.784a.75.75 0 0 1 .386-.214m-8.36-13.951A4.5 4.5 0 0 1 16 5.672A4.5 4.5 0 0 1 19.5 4h8A2.5 2.5 0 0 1 30 6.5v10.876c-.797-.994-1.562-1.484-1.709-1.575l-.102-.065l-.113-.046l-.076-.028V6.5a.5.5 0 0 0-.5-.5h-8A2.5 2.5 0 0 0 17 8.5v10.955h-.251c-.642 0-1.26.225-1.749.63V8.5a2.5 2.5 0 0 0-2.244-2.487L12.5 6h-8a.5.5 0 0 0-.5.5v19a.5.5 0 0 0 .5.5h8c.606 0 1.16-.217 1.593-.575c.122.466.363.897.709 1.245q.215.214.468.374A4.47 4.47 0 0 1 12.5 28h-8A2.5 2.5 0 0 1 2 25.5v-19A2.5 2.5 0 0 1 4.5 4h8zM24.43 19.459a1 1 0 0 1 .732.21a5.03 5.03 0 0 1 1.629 3.799a5.05 5.05 0 0 1-1.629 3.799a1 1 0 0 1-.62.22a1 1 0 0 1-.778-.381a1.01 1.01 0 0 1 .16-1.408a3.02 3.02 0 0 0 .869-2.23a3.03 3.03 0 0 0-.87-2.232a1.007 1.007 0 0 1-.16-1.407a1 1 0 0 1 .667-.37"/></svg>

React

import type { SVGProps } from "react";

export function FluentImmersiveReader32Regular(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M26.802 17.053a1 1 0 0 1 .7.023c.131.082 2.998 1.86 2.998 6.392s-2.868 6.311-2.998 6.391a1 1 0 0 1-.51.141a.996.996 0 0 1-.946-.749a1.01 1.01 0 0 1 .457-1.12v-.001c.082-.054 1.998-1.335 1.998-4.662c0-3.347-1.918-4.624-1.998-4.674a1.005 1.005 0 0 1 .299-1.741m-5.71.904a.748.748 0 0 1 .904.747v9.537a.76.76 0 0 1-.47.698a.745.745 0 0 1-.82-.175l-2.708-2.783h-1.249c-.331 0-.649-.133-.883-.369a1.26 1.26 0 0 1-.366-.888V22.21c0-.333.132-.652.366-.888c.234-.235.552-.368.883-.368h1.249l2.708-2.784a.75.75 0 0 1 .386-.214m-8.36-13.951A4.5 4.5 0 0 1 16 5.672A4.5 4.5 0 0 1 19.5 4h8A2.5 2.5 0 0 1 30 6.5v10.876c-.797-.994-1.562-1.484-1.709-1.575l-.102-.065l-.113-.046l-.076-.028V6.5a.5.5 0 0 0-.5-.5h-8A2.5 2.5 0 0 0 17 8.5v10.955h-.251c-.642 0-1.26.225-1.749.63V8.5a2.5 2.5 0 0 0-2.244-2.487L12.5 6h-8a.5.5 0 0 0-.5.5v19a.5.5 0 0 0 .5.5h8c.606 0 1.16-.217 1.593-.575c.122.466.363.897.709 1.245q.215.214.468.374A4.47 4.47 0 0 1 12.5 28h-8A2.5 2.5 0 0 1 2 25.5v-19A2.5 2.5 0 0 1 4.5 4h8zM24.43 19.459a1 1 0 0 1 .732.21a5.03 5.03 0 0 1 1.629 3.799a5.05 5.05 0 0 1-1.629 3.799a1 1 0 0 1-.62.22a1 1 0 0 1-.778-.381a1.01 1.01 0 0 1 .16-1.408a3.02 3.02 0 0 0 .869-2.23a3.03 3.03 0 0 0-.87-2.232a1.007 1.007 0 0 1-.16-1.407a1 1 0 0 1 .667-.37"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M26.802 17.053a1 1 0 0 1 .7.023c.131.082 2.998 1.86 2.998 6.392s-2.868 6.311-2.998 6.391a1 1 0 0 1-.51.141a.996.996 0 0 1-.946-.749a1.01 1.01 0 0 1 .457-1.12v-.001c.082-.054 1.998-1.335 1.998-4.662c0-3.347-1.918-4.624-1.998-4.674a1.005 1.005 0 0 1 .299-1.741m-5.71.904a.748.748 0 0 1 .904.747v9.537a.76.76 0 0 1-.47.698a.745.745 0 0 1-.82-.175l-2.708-2.783h-1.249c-.331 0-.649-.133-.883-.369a1.26 1.26 0 0 1-.366-.888V22.21c0-.333.132-.652.366-.888c.234-.235.552-.368.883-.368h1.249l2.708-2.784a.75.75 0 0 1 .386-.214m-8.36-13.951A4.5 4.5 0 0 1 16 5.672A4.5 4.5 0 0 1 19.5 4h8A2.5 2.5 0 0 1 30 6.5v10.876c-.797-.994-1.562-1.484-1.709-1.575l-.102-.065l-.113-.046l-.076-.028V6.5a.5.5 0 0 0-.5-.5h-8A2.5 2.5 0 0 0 17 8.5v10.955h-.251c-.642 0-1.26.225-1.749.63V8.5a2.5 2.5 0 0 0-2.244-2.487L12.5 6h-8a.5.5 0 0 0-.5.5v19a.5.5 0 0 0 .5.5h8c.606 0 1.16-.217 1.593-.575c.122.466.363.897.709 1.245q.215.214.468.374A4.47 4.47 0 0 1 12.5 28h-8A2.5 2.5 0 0 1 2 25.5v-19A2.5 2.5 0 0 1 4.5 4h8zM24.43 19.459a1 1 0 0 1 .732.21a5.03 5.03 0 0 1 1.629 3.799a5.05 5.05 0 0 1-1.629 3.799a1 1 0 0 1-.62.22a1 1 0 0 1-.778-.381a1.01 1.01 0 0 1 .16-1.408a3.02 3.02 0 0 0 .869-2.23a3.03 3.03 0 0 0-.87-2.232a1.007 1.007 0 0 1-.16-1.407a1 1 0 0 1 .667-.37"/></svg>
</template>

CSS

.icon-immersive-reader-32-regular {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M26.802%2017.053a1%201%200%200%201%20.7.023c.131.082%202.998%201.86%202.998%206.392s-2.868%206.311-2.998%206.391a1%201%200%200%201-.51.141a.996.996%200%200%201-.946-.749a1.01%201.01%200%200%201%20.457-1.12v-.001c.082-.054%201.998-1.335%201.998-4.662c0-3.347-1.918-4.624-1.998-4.674a1.005%201.005%200%200%201%20.299-1.741m-5.71.904a.748.748%200%200%201%20.904.747v9.537a.76.76%200%200%201-.47.698a.745.745%200%200%201-.82-.175l-2.708-2.783h-1.249c-.331%200-.649-.133-.883-.369a1.26%201.26%200%200%201-.366-.888V22.21c0-.333.132-.652.366-.888c.234-.235.552-.368.883-.368h1.249l2.708-2.784a.75.75%200%200%201%20.386-.214m-8.36-13.951A4.5%204.5%200%200%201%2016%205.672A4.5%204.5%200%200%201%2019.5%204h8A2.5%202.5%200%200%201%2030%206.5v10.876c-.797-.994-1.562-1.484-1.709-1.575l-.102-.065l-.113-.046l-.076-.028V6.5a.5.5%200%200%200-.5-.5h-8A2.5%202.5%200%200%200%2017%208.5v10.955h-.251c-.642%200-1.26.225-1.749.63V8.5a2.5%202.5%200%200%200-2.244-2.487L12.5%206h-8a.5.5%200%200%200-.5.5v19a.5.5%200%200%200%20.5.5h8c.606%200%201.16-.217%201.593-.575c.122.466.363.897.709%201.245q.215.214.468.374A4.47%204.47%200%200%201%2012.5%2028h-8A2.5%202.5%200%200%201%202%2025.5v-19A2.5%202.5%200%200%201%204.5%204h8zM24.43%2019.459a1%201%200%200%201%20.732.21a5.03%205.03%200%200%201%201.629%203.799a5.05%205.05%200%200%201-1.629%203.799a1%201%200%200%201-.62.22a1%201%200%200%201-.778-.381a1.01%201.01%200%200%201%20.16-1.408a3.02%203.02%200%200%200%20.869-2.23a3.03%203.03%200%200%200-.87-2.232a1.007%201.007%200%200%201-.16-1.407a1%201%200%200%201%20.667-.37%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M26.802%2017.053a1%201%200%200%201%20.7.023c.131.082%202.998%201.86%202.998%206.392s-2.868%206.311-2.998%206.391a1%201%200%200%201-.51.141a.996.996%200%200%201-.946-.749a1.01%201.01%200%200%201%20.457-1.12v-.001c.082-.054%201.998-1.335%201.998-4.662c0-3.347-1.918-4.624-1.998-4.674a1.005%201.005%200%200%201%20.299-1.741m-5.71.904a.748.748%200%200%201%20.904.747v9.537a.76.76%200%200%201-.47.698a.745.745%200%200%201-.82-.175l-2.708-2.783h-1.249c-.331%200-.649-.133-.883-.369a1.26%201.26%200%200%201-.366-.888V22.21c0-.333.132-.652.366-.888c.234-.235.552-.368.883-.368h1.249l2.708-2.784a.75.75%200%200%201%20.386-.214m-8.36-13.951A4.5%204.5%200%200%201%2016%205.672A4.5%204.5%200%200%201%2019.5%204h8A2.5%202.5%200%200%201%2030%206.5v10.876c-.797-.994-1.562-1.484-1.709-1.575l-.102-.065l-.113-.046l-.076-.028V6.5a.5.5%200%200%200-.5-.5h-8A2.5%202.5%200%200%200%2017%208.5v10.955h-.251c-.642%200-1.26.225-1.749.63V8.5a2.5%202.5%200%200%200-2.244-2.487L12.5%206h-8a.5.5%200%200%200-.5.5v19a.5.5%200%200%200%20.5.5h8c.606%200%201.16-.217%201.593-.575c.122.466.363.897.709%201.245q.215.214.468.374A4.47%204.47%200%200%201%2012.5%2028h-8A2.5%202.5%200%200%201%202%2025.5v-19A2.5%202.5%200%200%201%204.5%204h8zM24.43%2019.459a1%201%200%200%201%20.732.21a5.03%205.03%200%200%201%201.629%203.799a5.05%205.05%200%200%201-1.629%203.799a1%201%200%200%201-.62.22a1%201%200%200%201-.778-.381a1.01%201.01%200%200%201%20.16-1.408a3.02%203.02%200%200%200%20.869-2.23a3.03%203.03%200%200%200-.87-2.232a1.007%201.007%200%200%201-.16-1.407a1%201%200%200%201%20.667-.37%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/immersive-reader-32-regular.svg?color=%231a73e8&size=48