stream input output icon
stream-input-output-20-filled from Fluent UI System Icons by Microsoft Corporation · 20 Filled · MIT Free for personal and commercial use.
- Name
- stream-input-output-20-filled
- Set
- Fluent UI System Icons
- Style
- 20 Filled
- Viewbox
- 20×20
- License
- MIT
1 other variant in Fluent UI System Icons
Related icons in Fluent UI System Icons
Use the stream input output icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.25 3.5A5.75 5.75 0 0 0 7.5 9.25v1a2.25 2.25 0 0 1-2.25 2.25h-2.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 0 .75-.75v-1A7.25 7.25 0 0 1 13.25 2h.5a.75.75 0 0 1 0 1.5zm-2.75 6a3.25 3.25 0 0 1 3.25-3.25h3.5a.75.75 0 0 0 0-1.5h-3.5A4.75 4.75 0 0 0 9 9.5v1a3.25 3.25 0 0 1-3.25 3.25h-3a.75.75 0 0 0 0 1.5h3a4.75 4.75 0 0 0 4.75-4.75zm3.75-.5a.75.75 0 0 0-.75.75v1a7.3 7.3 0 0 1-.253 1.904a1.9 1.9 0 0 0-1.584.041A5.7 5.7 0 0 0 12 10.75v-1a2.25 2.25 0 0 1 2.25-2.25h3a.75.75 0 0 1 0 1.5zm-1.396 9.162a.5.5 0 0 1-.708.707l-2-2a.5.5 0 0 1 0-.707l2-2a.5.5 0 0 1 .708.707l-1.147 1.147h5.586l-1.147-1.147a.5.5 0 0 1 .708-.707l2 2a.5.5 0 0 1 0 .707l-2 2a.5.5 0 0 1-.708-.707l1.147-1.146h-5.586z"/></svg>
React
import type { SVGProps } from "react";
export function FluentStreamInputOutput20Filled(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="M13.25 3.5A5.75 5.75 0 0 0 7.5 9.25v1a2.25 2.25 0 0 1-2.25 2.25h-2.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 0 .75-.75v-1A7.25 7.25 0 0 1 13.25 2h.5a.75.75 0 0 1 0 1.5zm-2.75 6a3.25 3.25 0 0 1 3.25-3.25h3.5a.75.75 0 0 0 0-1.5h-3.5A4.75 4.75 0 0 0 9 9.5v1a3.25 3.25 0 0 1-3.25 3.25h-3a.75.75 0 0 0 0 1.5h3a4.75 4.75 0 0 0 4.75-4.75zm3.75-.5a.75.75 0 0 0-.75.75v1a7.3 7.3 0 0 1-.253 1.904a1.9 1.9 0 0 0-1.584.041A5.7 5.7 0 0 0 12 10.75v-1a2.25 2.25 0 0 1 2.25-2.25h3a.75.75 0 0 1 0 1.5zm-1.396 9.162a.5.5 0 0 1-.708.707l-2-2a.5.5 0 0 1 0-.707l2-2a.5.5 0 0 1 .708.707l-1.147 1.147h5.586l-1.147-1.147a.5.5 0 0 1 .708-.707l2 2a.5.5 0 0 1 0 .707l-2 2a.5.5 0 0 1-.708-.707l1.147-1.146h-5.586z"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M13.25 3.5A5.75 5.75 0 0 0 7.5 9.25v1a2.25 2.25 0 0 1-2.25 2.25h-2.5a.75.75 0 0 1 0-1.5h2.5a.75.75 0 0 0 .75-.75v-1A7.25 7.25 0 0 1 13.25 2h.5a.75.75 0 0 1 0 1.5zm-2.75 6a3.25 3.25 0 0 1 3.25-3.25h3.5a.75.75 0 0 0 0-1.5h-3.5A4.75 4.75 0 0 0 9 9.5v1a3.25 3.25 0 0 1-3.25 3.25h-3a.75.75 0 0 0 0 1.5h3a4.75 4.75 0 0 0 4.75-4.75zm3.75-.5a.75.75 0 0 0-.75.75v1a7.3 7.3 0 0 1-.253 1.904a1.9 1.9 0 0 0-1.584.041A5.7 5.7 0 0 0 12 10.75v-1a2.25 2.25 0 0 1 2.25-2.25h3a.75.75 0 0 1 0 1.5zm-1.396 9.162a.5.5 0 0 1-.708.707l-2-2a.5.5 0 0 1 0-.707l2-2a.5.5 0 0 1 .708.707l-1.147 1.147h5.586l-1.147-1.147a.5.5 0 0 1 .708-.707l2 2a.5.5 0 0 1 0 .707l-2 2a.5.5 0 0 1-.708-.707l1.147-1.146h-5.586z"/></svg> </template>
CSS
.icon-stream-input-output-20-filled {
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%22M13.25%203.5A5.75%205.75%200%200%200%207.5%209.25v1a2.25%202.25%200%200%201-2.25%202.25h-2.5a.75.75%200%200%201%200-1.5h2.5a.75.75%200%200%200%20.75-.75v-1A7.25%207.25%200%200%201%2013.25%202h.5a.75.75%200%200%201%200%201.5zm-2.75%206a3.25%203.25%200%200%201%203.25-3.25h3.5a.75.75%200%200%200%200-1.5h-3.5A4.75%204.75%200%200%200%209%209.5v1a3.25%203.25%200%200%201-3.25%203.25h-3a.75.75%200%200%200%200%201.5h3a4.75%204.75%200%200%200%204.75-4.75zm3.75-.5a.75.75%200%200%200-.75.75v1a7.3%207.3%200%200%201-.253%201.904a1.9%201.9%200%200%200-1.584.041A5.7%205.7%200%200%200%2012%2010.75v-1a2.25%202.25%200%200%201%202.25-2.25h3a.75.75%200%200%201%200%201.5zm-1.396%209.162a.5.5%200%200%201-.708.707l-2-2a.5.5%200%200%201%200-.707l2-2a.5.5%200%200%201%20.708.707l-1.147%201.147h5.586l-1.147-1.147a.5.5%200%200%201%20.708-.707l2%202a.5.5%200%200%201%200%20.707l-2%202a.5.5%200%200%201-.708-.707l1.147-1.146h-5.586z%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%22M13.25%203.5A5.75%205.75%200%200%200%207.5%209.25v1a2.25%202.25%200%200%201-2.25%202.25h-2.5a.75.75%200%200%201%200-1.5h2.5a.75.75%200%200%200%20.75-.75v-1A7.25%207.25%200%200%201%2013.25%202h.5a.75.75%200%200%201%200%201.5zm-2.75%206a3.25%203.25%200%200%201%203.25-3.25h3.5a.75.75%200%200%200%200-1.5h-3.5A4.75%204.75%200%200%200%209%209.5v1a3.25%203.25%200%200%201-3.25%203.25h-3a.75.75%200%200%200%200%201.5h3a4.75%204.75%200%200%200%204.75-4.75zm3.75-.5a.75.75%200%200%200-.75.75v1a7.3%207.3%200%200%201-.253%201.904a1.9%201.9%200%200%200-1.584.041A5.7%205.7%200%200%200%2012%2010.75v-1a2.25%202.25%200%200%201%202.25-2.25h3a.75.75%200%200%201%200%201.5zm-1.396%209.162a.5.5%200%200%201-.708.707l-2-2a.5.5%200%200%201%200-.707l2-2a.5.5%200%200%201%20.708.707l-1.147%201.147h5.586l-1.147-1.147a.5.5%200%200%201%20.708-.707l2%202a.5.5%200%200%201%200%20.707l-2%202a.5.5%200%200%201-.708-.707l1.147-1.146h-5.586z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/stream-input-output-20-filled.svg?color=%231a73e8&size=48