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

Name
cowork-48-filled
Set
Fluent UI System Icons
Style
48 Filled
Viewbox
48×48
License
MIT

11 other variants in Fluent UI System Icons

Use the cowork icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M13.001 4.947c1.45-.837 3.144-.859 4.823-.385c1.674.473 3.437 1.461 5.178 2.812a1.64 1.64 0 0 0 1.998 0c1.741-1.35 3.504-2.34 5.178-2.812c1.679-.474 3.373-.451 4.823.386c1.418.819 2.279 2.231 2.717 3.876c.37 1.392.457 3.018.312 4.777c-3.909-1.336-8.708-2.102-14.03-2.102c-3.728 0-7.192.376-10.27 1.056a1.25 1.25 0 0 0 .409 2.463c3.232-.712 6.552-1.02 9.861-1.02c5.057 0 10.426.668 15.158 2.664c1.969.83 3.643 1.85 4.844 3.047c1.205 1.202 1.999 2.654 1.999 4.291c0 1.674-.829 3.152-2.08 4.37c-1.245 1.213-2.983 2.245-5.023 3.078c-.683.278-1.1 1-1 1.73c.3 2.184.275 4.204-.153 5.89c-.43 1.691-1.295 3.147-2.745 3.984c-1.418.819-3.073.858-4.716.415c-1.391-.375-2.842-1.113-4.293-2.118c3.111-2.717 6.174-6.49 8.835-11.1c1.864-3.229 3.271-6.416 4.22-9.421a1.25 1.25 0 0 0-2.344-.86q-.252.795-.55 1.607c-.932 2.574-2.122 5.055-3.49 7.425c-2.543 4.404-5.821 8.718-9.887 11.796c-1.703 1.29-3.424 2.23-5.061 2.671c-1.643.443-3.297.404-4.715-.415c-1.45-.837-2.316-2.294-2.745-3.985c-.428-1.686-.453-3.706-.153-5.89c.1-.73-.317-1.452-1-1.73c-2.04-.833-3.778-1.865-5.024-3.078C2.827 27.15 2 25.672 2 23.999c0-1.638.793-3.09 1.998-4.29c1.021-1.018 2.386-1.907 3.981-2.66c.798 4.053 2.534 8.592 5.195 13.201c1.864 3.23 3.922 6.04 6.05 8.366a1.25 1.25 0 0 0 1.925-1.59a40 40 0 0 1-1.175-1.348c-1.743-2.078-3.28-4.33-4.635-6.678c-2.52-4.364-4.638-9.386-5.273-14.459c-.265-2.12-.218-4.08.218-5.718c.438-1.645 1.299-3.057 2.717-3.876"/></svg>

React

import type { SVGProps } from "react";

export function FluentCowork48Filled(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M13.001 4.947c1.45-.837 3.144-.859 4.823-.385c1.674.473 3.437 1.461 5.178 2.812a1.64 1.64 0 0 0 1.998 0c1.741-1.35 3.504-2.34 5.178-2.812c1.679-.474 3.373-.451 4.823.386c1.418.819 2.279 2.231 2.717 3.876c.37 1.392.457 3.018.312 4.777c-3.909-1.336-8.708-2.102-14.03-2.102c-3.728 0-7.192.376-10.27 1.056a1.25 1.25 0 0 0 .409 2.463c3.232-.712 6.552-1.02 9.861-1.02c5.057 0 10.426.668 15.158 2.664c1.969.83 3.643 1.85 4.844 3.047c1.205 1.202 1.999 2.654 1.999 4.291c0 1.674-.829 3.152-2.08 4.37c-1.245 1.213-2.983 2.245-5.023 3.078c-.683.278-1.1 1-1 1.73c.3 2.184.275 4.204-.153 5.89c-.43 1.691-1.295 3.147-2.745 3.984c-1.418.819-3.073.858-4.716.415c-1.391-.375-2.842-1.113-4.293-2.118c3.111-2.717 6.174-6.49 8.835-11.1c1.864-3.229 3.271-6.416 4.22-9.421a1.25 1.25 0 0 0-2.344-.86q-.252.795-.55 1.607c-.932 2.574-2.122 5.055-3.49 7.425c-2.543 4.404-5.821 8.718-9.887 11.796c-1.703 1.29-3.424 2.23-5.061 2.671c-1.643.443-3.297.404-4.715-.415c-1.45-.837-2.316-2.294-2.745-3.985c-.428-1.686-.453-3.706-.153-5.89c.1-.73-.317-1.452-1-1.73c-2.04-.833-3.778-1.865-5.024-3.078C2.827 27.15 2 25.672 2 23.999c0-1.638.793-3.09 1.998-4.29c1.021-1.018 2.386-1.907 3.981-2.66c.798 4.053 2.534 8.592 5.195 13.201c1.864 3.23 3.922 6.04 6.05 8.366a1.25 1.25 0 0 0 1.925-1.59a40 40 0 0 1-1.175-1.348c-1.743-2.078-3.28-4.33-4.635-6.678c-2.52-4.364-4.638-9.386-5.273-14.459c-.265-2.12-.218-4.08.218-5.718c.438-1.645 1.299-3.057 2.717-3.876"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><path fill="currentColor" d="M13.001 4.947c1.45-.837 3.144-.859 4.823-.385c1.674.473 3.437 1.461 5.178 2.812a1.64 1.64 0 0 0 1.998 0c1.741-1.35 3.504-2.34 5.178-2.812c1.679-.474 3.373-.451 4.823.386c1.418.819 2.279 2.231 2.717 3.876c.37 1.392.457 3.018.312 4.777c-3.909-1.336-8.708-2.102-14.03-2.102c-3.728 0-7.192.376-10.27 1.056a1.25 1.25 0 0 0 .409 2.463c3.232-.712 6.552-1.02 9.861-1.02c5.057 0 10.426.668 15.158 2.664c1.969.83 3.643 1.85 4.844 3.047c1.205 1.202 1.999 2.654 1.999 4.291c0 1.674-.829 3.152-2.08 4.37c-1.245 1.213-2.983 2.245-5.023 3.078c-.683.278-1.1 1-1 1.73c.3 2.184.275 4.204-.153 5.89c-.43 1.691-1.295 3.147-2.745 3.984c-1.418.819-3.073.858-4.716.415c-1.391-.375-2.842-1.113-4.293-2.118c3.111-2.717 6.174-6.49 8.835-11.1c1.864-3.229 3.271-6.416 4.22-9.421a1.25 1.25 0 0 0-2.344-.86q-.252.795-.55 1.607c-.932 2.574-2.122 5.055-3.49 7.425c-2.543 4.404-5.821 8.718-9.887 11.796c-1.703 1.29-3.424 2.23-5.061 2.671c-1.643.443-3.297.404-4.715-.415c-1.45-.837-2.316-2.294-2.745-3.985c-.428-1.686-.453-3.706-.153-5.89c.1-.73-.317-1.452-1-1.73c-2.04-.833-3.778-1.865-5.024-3.078C2.827 27.15 2 25.672 2 23.999c0-1.638.793-3.09 1.998-4.29c1.021-1.018 2.386-1.907 3.981-2.66c.798 4.053 2.534 8.592 5.195 13.201c1.864 3.23 3.922 6.04 6.05 8.366a1.25 1.25 0 0 0 1.925-1.59a40 40 0 0 1-1.175-1.348c-1.743-2.078-3.28-4.33-4.635-6.678c-2.52-4.364-4.638-9.386-5.273-14.459c-.265-2.12-.218-4.08.218-5.718c.438-1.645 1.299-3.057 2.717-3.876"/></svg>
</template>

CSS

.icon-cowork-48-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%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.001%204.947c1.45-.837%203.144-.859%204.823-.385c1.674.473%203.437%201.461%205.178%202.812a1.64%201.64%200%200%200%201.998%200c1.741-1.35%203.504-2.34%205.178-2.812c1.679-.474%203.373-.451%204.823.386c1.418.819%202.279%202.231%202.717%203.876c.37%201.392.457%203.018.312%204.777c-3.909-1.336-8.708-2.102-14.03-2.102c-3.728%200-7.192.376-10.27%201.056a1.25%201.25%200%200%200%20.409%202.463c3.232-.712%206.552-1.02%209.861-1.02c5.057%200%2010.426.668%2015.158%202.664c1.969.83%203.643%201.85%204.844%203.047c1.205%201.202%201.999%202.654%201.999%204.291c0%201.674-.829%203.152-2.08%204.37c-1.245%201.213-2.983%202.245-5.023%203.078c-.683.278-1.1%201-1%201.73c.3%202.184.275%204.204-.153%205.89c-.43%201.691-1.295%203.147-2.745%203.984c-1.418.819-3.073.858-4.716.415c-1.391-.375-2.842-1.113-4.293-2.118c3.111-2.717%206.174-6.49%208.835-11.1c1.864-3.229%203.271-6.416%204.22-9.421a1.25%201.25%200%200%200-2.344-.86q-.252.795-.55%201.607c-.932%202.574-2.122%205.055-3.49%207.425c-2.543%204.404-5.821%208.718-9.887%2011.796c-1.703%201.29-3.424%202.23-5.061%202.671c-1.643.443-3.297.404-4.715-.415c-1.45-.837-2.316-2.294-2.745-3.985c-.428-1.686-.453-3.706-.153-5.89c.1-.73-.317-1.452-1-1.73c-2.04-.833-3.778-1.865-5.024-3.078C2.827%2027.15%202%2025.672%202%2023.999c0-1.638.793-3.09%201.998-4.29c1.021-1.018%202.386-1.907%203.981-2.66c.798%204.053%202.534%208.592%205.195%2013.201c1.864%203.23%203.922%206.04%206.05%208.366a1.25%201.25%200%200%200%201.925-1.59a40%2040%200%200%201-1.175-1.348c-1.743-2.078-3.28-4.33-4.635-6.678c-2.52-4.364-4.638-9.386-5.273-14.459c-.265-2.12-.218-4.08.218-5.718c.438-1.645%201.299-3.057%202.717-3.876%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%2048%2048%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M13.001%204.947c1.45-.837%203.144-.859%204.823-.385c1.674.473%203.437%201.461%205.178%202.812a1.64%201.64%200%200%200%201.998%200c1.741-1.35%203.504-2.34%205.178-2.812c1.679-.474%203.373-.451%204.823.386c1.418.819%202.279%202.231%202.717%203.876c.37%201.392.457%203.018.312%204.777c-3.909-1.336-8.708-2.102-14.03-2.102c-3.728%200-7.192.376-10.27%201.056a1.25%201.25%200%200%200%20.409%202.463c3.232-.712%206.552-1.02%209.861-1.02c5.057%200%2010.426.668%2015.158%202.664c1.969.83%203.643%201.85%204.844%203.047c1.205%201.202%201.999%202.654%201.999%204.291c0%201.674-.829%203.152-2.08%204.37c-1.245%201.213-2.983%202.245-5.023%203.078c-.683.278-1.1%201-1%201.73c.3%202.184.275%204.204-.153%205.89c-.43%201.691-1.295%203.147-2.745%203.984c-1.418.819-3.073.858-4.716.415c-1.391-.375-2.842-1.113-4.293-2.118c3.111-2.717%206.174-6.49%208.835-11.1c1.864-3.229%203.271-6.416%204.22-9.421a1.25%201.25%200%200%200-2.344-.86q-.252.795-.55%201.607c-.932%202.574-2.122%205.055-3.49%207.425c-2.543%204.404-5.821%208.718-9.887%2011.796c-1.703%201.29-3.424%202.23-5.061%202.671c-1.643.443-3.297.404-4.715-.415c-1.45-.837-2.316-2.294-2.745-3.985c-.428-1.686-.453-3.706-.153-5.89c.1-.73-.317-1.452-1-1.73c-2.04-.833-3.778-1.865-5.024-3.078C2.827%2027.15%202%2025.672%202%2023.999c0-1.638.793-3.09%201.998-4.29c1.021-1.018%202.386-1.907%203.981-2.66c.798%204.053%202.534%208.592%205.195%2013.201c1.864%203.23%203.922%206.04%206.05%208.366a1.25%201.25%200%200%200%201.925-1.59a40%2040%200%200%201-1.175-1.348c-1.743-2.078-3.28-4.33-4.635-6.678c-2.52-4.364-4.638-9.386-5.273-14.459c-.265-2.12-.218-4.08.218-5.718c.438-1.645%201.299-3.057%202.717-3.876%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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