app-span-24-filled from Fluent UI System Icons by Microsoft Corporation · 24 Filled · MIT Free for personal and commercial use.

Name
app-span-24-filled
Set
Fluent UI System Icons
Style
24 Filled
Viewbox
24×24
License
MIT

1 other variant in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the app span icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path d="M15.75 2a2.25 2.25 0 0 1 2.245 2.096L18 4.25v3.517a1.747 1.747 0 0 0-1.488.495a1.728 1.728 0 0 0-.427 1.741l.055.154l.042.092h-1.526c-.847 0-1.504.65-1.633 1.459l-.017.144l-.006.147c0 .799.514 1.513 1.333 1.71l.157.03l.166.01h1.515l-.017.034a1.77 1.77 0 0 0 .047 1.512l.09.162l.098.143l.123.138c.399.4.947.568 1.488.485v3.527a2.25 2.25 0 0 1-2.096 2.245L15.75 22h-7.5a2.25 2.25 0 0 1-2.245-2.096L6 19.75v-3.528a1.719 1.719 0 0 0 1.488-.485l.123-.137l.097-.144a1.785 1.785 0 0 0 .138-1.674l-.017-.034h1.515l.166-.01c.91-.138 1.49-.891 1.49-1.74l-.006-.147c-.07-.875-.754-1.603-1.65-1.603H7.818l.042-.092a1.735 1.735 0 0 0-.372-1.895A1.747 1.747 0 0 0 6 7.766L6 4.25a2.25 2.25 0 0 1 2.096-2.245L8.25 2h7.5zM6.781 8.968a.75.75 0 0 1 .073.977l-.073.084l-1.221 1.22h3.784c.362 0 .656.335.656.75c0 .379-.247.693-.567.743l-.09.006H5.56l1.221 1.222a.75.75 0 0 1 .073.976l-.073.084a.75.75 0 0 1-.976.073l-.085-.073l-2.37-2.367A.77.77 0 0 1 3 12a.77.77 0 0 1 .35-.664l2.37-2.367a.75.75 0 0 1 1.061 0zm10.438-.003a.75.75 0 0 1 .976-.073l.085.073l2.37 2.368a.77.77 0 0 1 .35.663a.786.786 0 0 1-.276.611l-.075.053l-2.37 2.367l-.084.073a.75.75 0 0 1-.882.007l-.094-.08l-.073-.084a.75.75 0 0 1-.007-.882l.08-.094l1.221-1.222h-3.784l-.089-.006c-.32-.05-.567-.364-.567-.744s.247-.693.567-.743l.09-.007h3.783l-1.221-1.22l-.073-.083a.75.75 0 0 1 .073-.977z" fill="currentColor" fill-rule="nonzero"/></svg>

React

import type { SVGProps } from "react";

export function FluentAppSpan24Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path d="M15.75 2a2.25 2.25 0 0 1 2.245 2.096L18 4.25v3.517a1.747 1.747 0 0 0-1.488.495a1.728 1.728 0 0 0-.427 1.741l.055.154l.042.092h-1.526c-.847 0-1.504.65-1.633 1.459l-.017.144l-.006.147c0 .799.514 1.513 1.333 1.71l.157.03l.166.01h1.515l-.017.034a1.77 1.77 0 0 0 .047 1.512l.09.162l.098.143l.123.138c.399.4.947.568 1.488.485v3.527a2.25 2.25 0 0 1-2.096 2.245L15.75 22h-7.5a2.25 2.25 0 0 1-2.245-2.096L6 19.75v-3.528a1.719 1.719 0 0 0 1.488-.485l.123-.137l.097-.144a1.785 1.785 0 0 0 .138-1.674l-.017-.034h1.515l.166-.01c.91-.138 1.49-.891 1.49-1.74l-.006-.147c-.07-.875-.754-1.603-1.65-1.603H7.818l.042-.092a1.735 1.735 0 0 0-.372-1.895A1.747 1.747 0 0 0 6 7.766L6 4.25a2.25 2.25 0 0 1 2.096-2.245L8.25 2h7.5zM6.781 8.968a.75.75 0 0 1 .073.977l-.073.084l-1.221 1.22h3.784c.362 0 .656.335.656.75c0 .379-.247.693-.567.743l-.09.006H5.56l1.221 1.222a.75.75 0 0 1 .073.976l-.073.084a.75.75 0 0 1-.976.073l-.085-.073l-2.37-2.367A.77.77 0 0 1 3 12a.77.77 0 0 1 .35-.664l2.37-2.367a.75.75 0 0 1 1.061 0zm10.438-.003a.75.75 0 0 1 .976-.073l.085.073l2.37 2.368a.77.77 0 0 1 .35.663a.786.786 0 0 1-.276.611l-.075.053l-2.37 2.367l-.084.073a.75.75 0 0 1-.882.007l-.094-.08l-.073-.084a.75.75 0 0 1-.007-.882l.08-.094l1.221-1.222h-3.784l-.089-.006c-.32-.05-.567-.364-.567-.744s.247-.693.567-.743l.09-.007h3.783l-1.221-1.22l-.073-.083a.75.75 0 0 1 .073-.977z" fill="currentColor" fillRule="nonzero"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path d="M15.75 2a2.25 2.25 0 0 1 2.245 2.096L18 4.25v3.517a1.747 1.747 0 0 0-1.488.495a1.728 1.728 0 0 0-.427 1.741l.055.154l.042.092h-1.526c-.847 0-1.504.65-1.633 1.459l-.017.144l-.006.147c0 .799.514 1.513 1.333 1.71l.157.03l.166.01h1.515l-.017.034a1.77 1.77 0 0 0 .047 1.512l.09.162l.098.143l.123.138c.399.4.947.568 1.488.485v3.527a2.25 2.25 0 0 1-2.096 2.245L15.75 22h-7.5a2.25 2.25 0 0 1-2.245-2.096L6 19.75v-3.528a1.719 1.719 0 0 0 1.488-.485l.123-.137l.097-.144a1.785 1.785 0 0 0 .138-1.674l-.017-.034h1.515l.166-.01c.91-.138 1.49-.891 1.49-1.74l-.006-.147c-.07-.875-.754-1.603-1.65-1.603H7.818l.042-.092a1.735 1.735 0 0 0-.372-1.895A1.747 1.747 0 0 0 6 7.766L6 4.25a2.25 2.25 0 0 1 2.096-2.245L8.25 2h7.5zM6.781 8.968a.75.75 0 0 1 .073.977l-.073.084l-1.221 1.22h3.784c.362 0 .656.335.656.75c0 .379-.247.693-.567.743l-.09.006H5.56l1.221 1.222a.75.75 0 0 1 .073.976l-.073.084a.75.75 0 0 1-.976.073l-.085-.073l-2.37-2.367A.77.77 0 0 1 3 12a.77.77 0 0 1 .35-.664l2.37-2.367a.75.75 0 0 1 1.061 0zm10.438-.003a.75.75 0 0 1 .976-.073l.085.073l2.37 2.368a.77.77 0 0 1 .35.663a.786.786 0 0 1-.276.611l-.075.053l-2.37 2.367l-.084.073a.75.75 0 0 1-.882.007l-.094-.08l-.073-.084a.75.75 0 0 1-.007-.882l.08-.094l1.221-1.222h-3.784l-.089-.006c-.32-.05-.567-.364-.567-.744s.247-.693.567-.743l.09-.007h3.783l-1.221-1.22l-.073-.083a.75.75 0 0 1 .073-.977z" fill="currentColor" fill-rule="nonzero"/></svg>
</template>

CSS

.icon-app-span-24-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%2024%2024%22%3E%3Cpath%20d%3D%22M15.75%202a2.25%202.25%200%200%201%202.245%202.096L18%204.25v3.517a1.747%201.747%200%200%200-1.488.495a1.728%201.728%200%200%200-.427%201.741l.055.154l.042.092h-1.526c-.847%200-1.504.65-1.633%201.459l-.017.144l-.006.147c0%20.799.514%201.513%201.333%201.71l.157.03l.166.01h1.515l-.017.034a1.77%201.77%200%200%200%20.047%201.512l.09.162l.098.143l.123.138c.399.4.947.568%201.488.485v3.527a2.25%202.25%200%200%201-2.096%202.245L15.75%2022h-7.5a2.25%202.25%200%200%201-2.245-2.096L6%2019.75v-3.528a1.719%201.719%200%200%200%201.488-.485l.123-.137l.097-.144a1.785%201.785%200%200%200%20.138-1.674l-.017-.034h1.515l.166-.01c.91-.138%201.49-.891%201.49-1.74l-.006-.147c-.07-.875-.754-1.603-1.65-1.603H7.818l.042-.092a1.735%201.735%200%200%200-.372-1.895A1.747%201.747%200%200%200%206%207.766L6%204.25a2.25%202.25%200%200%201%202.096-2.245L8.25%202h7.5zM6.781%208.968a.75.75%200%200%201%20.073.977l-.073.084l-1.221%201.22h3.784c.362%200%20.656.335.656.75c0%20.379-.247.693-.567.743l-.09.006H5.56l1.221%201.222a.75.75%200%200%201%20.073.976l-.073.084a.75.75%200%200%201-.976.073l-.085-.073l-2.37-2.367A.77.77%200%200%201%203%2012a.77.77%200%200%201%20.35-.664l2.37-2.367a.75.75%200%200%201%201.061%200zm10.438-.003a.75.75%200%200%201%20.976-.073l.085.073l2.37%202.368a.77.77%200%200%201%20.35.663a.786.786%200%200%201-.276.611l-.075.053l-2.37%202.367l-.084.073a.75.75%200%200%201-.882.007l-.094-.08l-.073-.084a.75.75%200%200%201-.007-.882l.08-.094l1.221-1.222h-3.784l-.089-.006c-.32-.05-.567-.364-.567-.744s.247-.693.567-.743l.09-.007h3.783l-1.221-1.22l-.073-.083a.75.75%200%200%201%20.073-.977z%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%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%2024%2024%22%3E%3Cpath%20d%3D%22M15.75%202a2.25%202.25%200%200%201%202.245%202.096L18%204.25v3.517a1.747%201.747%200%200%200-1.488.495a1.728%201.728%200%200%200-.427%201.741l.055.154l.042.092h-1.526c-.847%200-1.504.65-1.633%201.459l-.017.144l-.006.147c0%20.799.514%201.513%201.333%201.71l.157.03l.166.01h1.515l-.017.034a1.77%201.77%200%200%200%20.047%201.512l.09.162l.098.143l.123.138c.399.4.947.568%201.488.485v3.527a2.25%202.25%200%200%201-2.096%202.245L15.75%2022h-7.5a2.25%202.25%200%200%201-2.245-2.096L6%2019.75v-3.528a1.719%201.719%200%200%200%201.488-.485l.123-.137l.097-.144a1.785%201.785%200%200%200%20.138-1.674l-.017-.034h1.515l.166-.01c.91-.138%201.49-.891%201.49-1.74l-.006-.147c-.07-.875-.754-1.603-1.65-1.603H7.818l.042-.092a1.735%201.735%200%200%200-.372-1.895A1.747%201.747%200%200%200%206%207.766L6%204.25a2.25%202.25%200%200%201%202.096-2.245L8.25%202h7.5zM6.781%208.968a.75.75%200%200%201%20.073.977l-.073.084l-1.221%201.22h3.784c.362%200%20.656.335.656.75c0%20.379-.247.693-.567.743l-.09.006H5.56l1.221%201.222a.75.75%200%200%201%20.073.976l-.073.084a.75.75%200%200%201-.976.073l-.085-.073l-2.37-2.367A.77.77%200%200%201%203%2012a.77.77%200%200%201%20.35-.664l2.37-2.367a.75.75%200%200%201%201.061%200zm10.438-.003a.75.75%200%200%201%20.976-.073l.085.073l2.37%202.368a.77.77%200%200%201%20.35.663a.786.786%200%200%201-.276.611l-.075.053l-2.37%202.367l-.084.073a.75.75%200%200%201-.882.007l-.094-.08l-.073-.084a.75.75%200%200%201-.007-.882l.08-.094l1.221-1.222h-3.784l-.089-.006c-.32-.05-.567-.364-.567-.744s.247-.693.567-.743l.09-.007h3.783l-1.221-1.22l-.073-.083a.75.75%200%200%201%20.073-.977z%22%20fill%3D%22currentColor%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/app-span-24-filled.svg?color=%231a73e8&size=48