orientation portrait icon
orientation-portrait-20-regular from Fluent UI System Icons by Microsoft Corporation · 20 Regular · MIT Free for personal and commercial use.
- Name
- orientation-portrait-20-regular
- Set
- Fluent UI System Icons
- Style
- 20 Regular
- Viewbox
- 20×20
- License
- MIT
3 other variants in Fluent UI System Icons
Use the orientation portrait icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M4.5 16a.5.5 0 0 1 .5.5v.25c0 .138.112.25.25.25h.25a.5.5 0 0 1 0 1h-.25C4.56 18 4 17.44 4 16.75v-.25a.5.5 0 0 1 .5-.5m4 1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm6-10A1.5 1.5 0 0 1 16 8.5v8a1.5 1.5 0 0 1-1.5 1.5h-4A1.5 1.5 0 0 1 9 16.5v-8A1.5 1.5 0 0 1 10.5 7zm-4 1a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5zm-6 5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5m1-3a.5.5 0 0 1 0 1h-.25a.25.25 0 0 0-.25.25v.25a.5.5 0 0 1-1 0v-.25c0-.69.56-1.25 1.25-1.25zm3 0a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm1-8A3.5 3.5 0 0 1 13 5.5a.5.5 0 0 1-1 0a2.5 2.5 0 0 0-4.991-.217l.137-.137a.5.5 0 1 1 .708.708l-1 1a.5.5 0 0 1-.708 0l-1-1a.5.5 0 1 1 .708-.708l.152.153A3.5 3.5 0 0 1 9.5 2"/></svg>
React
import type { SVGProps } from "react";
export function FluentOrientationPortrait20Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M4.5 16a.5.5 0 0 1 .5.5v.25c0 .138.112.25.25.25h.25a.5.5 0 0 1 0 1h-.25C4.56 18 4 17.44 4 16.75v-.25a.5.5 0 0 1 .5-.5m4 1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm6-10A1.5 1.5 0 0 1 16 8.5v8a1.5 1.5 0 0 1-1.5 1.5h-4A1.5 1.5 0 0 1 9 16.5v-8A1.5 1.5 0 0 1 10.5 7zm-4 1a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5zm-6 5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5m1-3a.5.5 0 0 1 0 1h-.25a.25.25 0 0 0-.25.25v.25a.5.5 0 0 1-1 0v-.25c0-.69.56-1.25 1.25-1.25zm3 0a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm1-8A3.5 3.5 0 0 1 13 5.5a.5.5 0 0 1-1 0a2.5 2.5 0 0 0-4.991-.217l.137-.137a.5.5 0 1 1 .708.708l-1 1a.5.5 0 0 1-.708 0l-1-1a.5.5 0 1 1 .708-.708l.152.153A3.5 3.5 0 0 1 9.5 2"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M4.5 16a.5.5 0 0 1 .5.5v.25c0 .138.112.25.25.25h.25a.5.5 0 0 1 0 1h-.25C4.56 18 4 17.44 4 16.75v-.25a.5.5 0 0 1 .5-.5m4 1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm6-10A1.5 1.5 0 0 1 16 8.5v8a1.5 1.5 0 0 1-1.5 1.5h-4A1.5 1.5 0 0 1 9 16.5v-8A1.5 1.5 0 0 1 10.5 7zm-4 1a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5zm-6 5a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0v-1a.5.5 0 0 1 .5-.5m1-3a.5.5 0 0 1 0 1h-.25a.25.25 0 0 0-.25.25v.25a.5.5 0 0 1-1 0v-.25c0-.69.56-1.25 1.25-1.25zm3 0a.5.5 0 0 1 0 1h-1a.5.5 0 0 1 0-1zm1-8A3.5 3.5 0 0 1 13 5.5a.5.5 0 0 1-1 0a2.5 2.5 0 0 0-4.991-.217l.137-.137a.5.5 0 1 1 .708.708l-1 1a.5.5 0 0 1-.708 0l-1-1a.5.5 0 1 1 .708-.708l.152.153A3.5 3.5 0 0 1 9.5 2"/></svg> </template>
CSS
.icon-orientation-portrait-20-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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4.5%2016a.5.5%200%200%201%20.5.5v.25c0%20.138.112.25.25.25h.25a.5.5%200%200%201%200%201h-.25C4.56%2018%204%2017.44%204%2016.75v-.25a.5.5%200%200%201%20.5-.5m4%201a.5.5%200%200%201%200%201h-1a.5.5%200%200%201%200-1zm6-10A1.5%201.5%200%200%201%2016%208.5v8a1.5%201.5%200%200%201-1.5%201.5h-4A1.5%201.5%200%200%201%209%2016.5v-8A1.5%201.5%200%200%201%2010.5%207zm-4%201a.5.5%200%200%200-.5.5v8a.5.5%200%200%200%20.5.5h4a.5.5%200%200%200%20.5-.5v-8a.5.5%200%200%200-.5-.5zm-6%205a.5.5%200%200%201%20.5.5v1a.5.5%200%200%201-1%200v-1a.5.5%200%200%201%20.5-.5m1-3a.5.5%200%200%201%200%201h-.25a.25.25%200%200%200-.25.25v.25a.5.5%200%200%201-1%200v-.25c0-.69.56-1.25%201.25-1.25zm3%200a.5.5%200%200%201%200%201h-1a.5.5%200%200%201%200-1zm1-8A3.5%203.5%200%200%201%2013%205.5a.5.5%200%200%201-1%200a2.5%202.5%200%200%200-4.991-.217l.137-.137a.5.5%200%201%201%20.708.708l-1%201a.5.5%200%200%201-.708%200l-1-1a.5.5%200%201%201%20.708-.708l.152.153A3.5%203.5%200%200%201%209.5%202%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%2020%2020%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M4.5%2016a.5.5%200%200%201%20.5.5v.25c0%20.138.112.25.25.25h.25a.5.5%200%200%201%200%201h-.25C4.56%2018%204%2017.44%204%2016.75v-.25a.5.5%200%200%201%20.5-.5m4%201a.5.5%200%200%201%200%201h-1a.5.5%200%200%201%200-1zm6-10A1.5%201.5%200%200%201%2016%208.5v8a1.5%201.5%200%200%201-1.5%201.5h-4A1.5%201.5%200%200%201%209%2016.5v-8A1.5%201.5%200%200%201%2010.5%207zm-4%201a.5.5%200%200%200-.5.5v8a.5.5%200%200%200%20.5.5h4a.5.5%200%200%200%20.5-.5v-8a.5.5%200%200%200-.5-.5zm-6%205a.5.5%200%200%201%20.5.5v1a.5.5%200%200%201-1%200v-1a.5.5%200%200%201%20.5-.5m1-3a.5.5%200%200%201%200%201h-.25a.25.25%200%200%200-.25.25v.25a.5.5%200%200%201-1%200v-.25c0-.69.56-1.25%201.25-1.25zm3%200a.5.5%200%200%201%200%201h-1a.5.5%200%200%201%200-1zm1-8A3.5%203.5%200%200%201%2013%205.5a.5.5%200%200%201-1%200a2.5%202.5%200%200%200-4.991-.217l.137-.137a.5.5%200%201%201%20.708.708l-1%201a.5.5%200%200%201-.708%200l-1-1a.5.5%200%201%201%20.708-.708l.152.153A3.5%203.5%200%200%201%209.5%202%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/orientation-portrait-20-regular.svg?color=%231a73e8&size=48