immersive reader icon
immersive-reader-32-light from Fluent UI System Icons by Microsoft Corporation · 32 Light · MIT Free for personal and commercial use.
- Name
- immersive-reader-32-light
- Set
- Fluent UI System Icons
- Style
- 32 Light
- Viewbox
- 32×32
- License
- MIT
12 other variants in Fluent UI System Icons
immersive-reader-16-filledimmersive-reader-16-regularimmersive-reader-20-filledimmersive-reader-20-regularimmersive-reader-24-filledimmersive-reader-24-regularimmersive-reader-28-filledimmersive-reader-28-regularimmersive-reader-32-filledimmersive-reader-32-regularimmersive-reader-48-filledimmersive-reader-48-regular
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-.214M12.75 4c1.39 0 2.602.755 3.25 1.878A3.75 3.75 0 0 1 19.25 4H28a2 2 0 0 1 2 2v11.376a8 8 0 0 0-1-1.044V6a1 1 0 0 0-1-1h-8.75a2.75 2.75 0 0 0-2.75 2.75v11.264a2.5 2.5 0 0 0-1 .208V7.75A2.75 2.75 0 0 0 12.75 5H4a1 1 0 0 0-1 1v20a1 1 0 0 0 1 1h8.75c.679 0 1.299-.248 1.778-.656q.123.172.274.326q.21.209.456.367A3.74 3.74 0 0 1 12.75 28H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm11.68 15.459a1 1 0 0 1 .733.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 FluentImmersiveReader32Light(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-.214M12.75 4c1.39 0 2.602.755 3.25 1.878A3.75 3.75 0 0 1 19.25 4H28a2 2 0 0 1 2 2v11.376a8 8 0 0 0-1-1.044V6a1 1 0 0 0-1-1h-8.75a2.75 2.75 0 0 0-2.75 2.75v11.264a2.5 2.5 0 0 0-1 .208V7.75A2.75 2.75 0 0 0 12.75 5H4a1 1 0 0 0-1 1v20a1 1 0 0 0 1 1h8.75c.679 0 1.299-.248 1.778-.656q.123.172.274.326q.21.209.456.367A3.74 3.74 0 0 1 12.75 28H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm11.68 15.459a1 1 0 0 1 .733.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-.214M12.75 4c1.39 0 2.602.755 3.25 1.878A3.75 3.75 0 0 1 19.25 4H28a2 2 0 0 1 2 2v11.376a8 8 0 0 0-1-1.044V6a1 1 0 0 0-1-1h-8.75a2.75 2.75 0 0 0-2.75 2.75v11.264a2.5 2.5 0 0 0-1 .208V7.75A2.75 2.75 0 0 0 12.75 5H4a1 1 0 0 0-1 1v20a1 1 0 0 0 1 1h8.75c.679 0 1.299-.248 1.778-.656q.123.172.274.326q.21.209.456.367A3.74 3.74 0 0 1 12.75 28H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm11.68 15.459a1 1 0 0 1 .733.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-light {
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-.214M12.75%204c1.39%200%202.602.755%203.25%201.878A3.75%203.75%200%200%201%2019.25%204H28a2%202%200%200%201%202%202v11.376a8%208%200%200%200-1-1.044V6a1%201%200%200%200-1-1h-8.75a2.75%202.75%200%200%200-2.75%202.75v11.264a2.5%202.5%200%200%200-1%20.208V7.75A2.75%202.75%200%200%200%2012.75%205H4a1%201%200%200%200-1%201v20a1%201%200%200%200%201%201h8.75c.679%200%201.299-.248%201.778-.656q.123.172.274.326q.21.209.456.367A3.74%203.74%200%200%201%2012.75%2028H4a2%202%200%200%201-2-2V6a2%202%200%200%201%202-2zm11.68%2015.459a1%201%200%200%201%20.733.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-.214M12.75%204c1.39%200%202.602.755%203.25%201.878A3.75%203.75%200%200%201%2019.25%204H28a2%202%200%200%201%202%202v11.376a8%208%200%200%200-1-1.044V6a1%201%200%200%200-1-1h-8.75a2.75%202.75%200%200%200-2.75%202.75v11.264a2.5%202.5%200%200%200-1%20.208V7.75A2.75%202.75%200%200%200%2012.75%205H4a1%201%200%200%200-1%201v20a1%201%200%200%200%201%201h8.75c.679%200%201.299-.248%201.778-.656q.123.172.274.326q.21.209.456.367A3.74%203.74%200%200%201%2012.75%2028H4a2%202%200%200%201-2-2V6a2%202%200%200%201%202-2zm11.68%2015.459a1%201%200%200%201%20.733.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-light.svg?color=%231a73e8&size=48