call-forward-24-regular from Fluent UI System Icons by Microsoft Corporation · 24 Regular · MIT Free for personal and commercial use.

Name
call-forward-24-regular
Set
Fluent UI System Icons
Style
24 Regular
Viewbox
24×24
License
MIT

11 other variants in Fluent UI System Icons

Related icons in Fluent UI System Icons

Use the call forward icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m9.98 2.054l.222.046l.816.191a2.75 2.75 0 0 1 2.107 2.955L12.947 7a2.75 2.75 0 0 1-2.118 2.402l-1.685.39a.25.25 0 0 0-.157.113c-.197.32-.32 1.033-.32 2.097c0 .786.066 1.386.188 1.786c.043.14.085.238.116.301l.049.09l.04.015l1.77.408a2.75 2.75 0 0 1 2.117 2.401l.178 1.746a2.75 2.75 0 0 1-2.097 2.953l-.817.195a3.75 3.75 0 0 1-3.65-1.13C4.838 18.867 4 15.938 4 12.002c0-3.942.842-6.874 2.569-8.774A3.75 3.75 0 0 1 9.98 2.054m-2.3 2.183C6.24 5.818 5.5 8.4 5.5 12.002c0 3.597.739 6.176 2.172 7.758a2.25 2.25 0 0 0 2.19.678l.817-.195a1.25 1.25 0 0 0 .953-1.342l-.177-1.746a1.25 1.25 0 0 0-.963-1.091l-1.82-.422l-.135-.043c-.999-.376-1.37-1.591-1.37-3.597c0-1.318.164-2.265.54-2.88a1.75 1.75 0 0 1 1.1-.792l1.685-.39a1.25 1.25 0 0 0 .962-1.091l.178-1.754a1.25 1.25 0 0 0-.957-1.343l-.817-.192l-.17-.034a2.25 2.25 0 0 0-2.01.71m7.968 3.067l.073-.084a.75.75 0 0 1 .976-.073l.084.073l3.997 3.997a.75.75 0 0 1 .073.976l-.073.085l-3.996 4.003a.75.75 0 0 1-1.134-.975l.072-.085l2.711-2.716H12a.75.75 0 0 1-.743-.648l-.006-.102a.75.75 0 0 1 .648-.743l.102-.007h6.442L15.72 8.28a.75.75 0 0 1-.073-.976l.073-.084z"/></svg>

React

import type { SVGProps } from "react";

export function FluentCallForward24Regular(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m9.98 2.054l.222.046l.816.191a2.75 2.75 0 0 1 2.107 2.955L12.947 7a2.75 2.75 0 0 1-2.118 2.402l-1.685.39a.25.25 0 0 0-.157.113c-.197.32-.32 1.033-.32 2.097c0 .786.066 1.386.188 1.786c.043.14.085.238.116.301l.049.09l.04.015l1.77.408a2.75 2.75 0 0 1 2.117 2.401l.178 1.746a2.75 2.75 0 0 1-2.097 2.953l-.817.195a3.75 3.75 0 0 1-3.65-1.13C4.838 18.867 4 15.938 4 12.002c0-3.942.842-6.874 2.569-8.774A3.75 3.75 0 0 1 9.98 2.054m-2.3 2.183C6.24 5.818 5.5 8.4 5.5 12.002c0 3.597.739 6.176 2.172 7.758a2.25 2.25 0 0 0 2.19.678l.817-.195a1.25 1.25 0 0 0 .953-1.342l-.177-1.746a1.25 1.25 0 0 0-.963-1.091l-1.82-.422l-.135-.043c-.999-.376-1.37-1.591-1.37-3.597c0-1.318.164-2.265.54-2.88a1.75 1.75 0 0 1 1.1-.792l1.685-.39a1.25 1.25 0 0 0 .962-1.091l.178-1.754a1.25 1.25 0 0 0-.957-1.343l-.817-.192l-.17-.034a2.25 2.25 0 0 0-2.01.71m7.968 3.067l.073-.084a.75.75 0 0 1 .976-.073l.084.073l3.997 3.997a.75.75 0 0 1 .073.976l-.073.085l-3.996 4.003a.75.75 0 0 1-1.134-.975l.072-.085l2.711-2.716H12a.75.75 0 0 1-.743-.648l-.006-.102a.75.75 0 0 1 .648-.743l.102-.007h6.442L15.72 8.28a.75.75 0 0 1-.073-.976l.073-.084z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m9.98 2.054l.222.046l.816.191a2.75 2.75 0 0 1 2.107 2.955L12.947 7a2.75 2.75 0 0 1-2.118 2.402l-1.685.39a.25.25 0 0 0-.157.113c-.197.32-.32 1.033-.32 2.097c0 .786.066 1.386.188 1.786c.043.14.085.238.116.301l.049.09l.04.015l1.77.408a2.75 2.75 0 0 1 2.117 2.401l.178 1.746a2.75 2.75 0 0 1-2.097 2.953l-.817.195a3.75 3.75 0 0 1-3.65-1.13C4.838 18.867 4 15.938 4 12.002c0-3.942.842-6.874 2.569-8.774A3.75 3.75 0 0 1 9.98 2.054m-2.3 2.183C6.24 5.818 5.5 8.4 5.5 12.002c0 3.597.739 6.176 2.172 7.758a2.25 2.25 0 0 0 2.19.678l.817-.195a1.25 1.25 0 0 0 .953-1.342l-.177-1.746a1.25 1.25 0 0 0-.963-1.091l-1.82-.422l-.135-.043c-.999-.376-1.37-1.591-1.37-3.597c0-1.318.164-2.265.54-2.88a1.75 1.75 0 0 1 1.1-.792l1.685-.39a1.25 1.25 0 0 0 .962-1.091l.178-1.754a1.25 1.25 0 0 0-.957-1.343l-.817-.192l-.17-.034a2.25 2.25 0 0 0-2.01.71m7.968 3.067l.073-.084a.75.75 0 0 1 .976-.073l.084.073l3.997 3.997a.75.75 0 0 1 .073.976l-.073.085l-3.996 4.003a.75.75 0 0 1-1.134-.975l.072-.085l2.711-2.716H12a.75.75 0 0 1-.743-.648l-.006-.102a.75.75 0 0 1 .648-.743l.102-.007h6.442L15.72 8.28a.75.75 0 0 1-.073-.976l.073-.084z"/></svg>
</template>

CSS

.icon-call-forward-24-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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m9.98%202.054l.222.046l.816.191a2.75%202.75%200%200%201%202.107%202.955L12.947%207a2.75%202.75%200%200%201-2.118%202.402l-1.685.39a.25.25%200%200%200-.157.113c-.197.32-.32%201.033-.32%202.097c0%20.786.066%201.386.188%201.786c.043.14.085.238.116.301l.049.09l.04.015l1.77.408a2.75%202.75%200%200%201%202.117%202.401l.178%201.746a2.75%202.75%200%200%201-2.097%202.953l-.817.195a3.75%203.75%200%200%201-3.65-1.13C4.838%2018.867%204%2015.938%204%2012.002c0-3.942.842-6.874%202.569-8.774A3.75%203.75%200%200%201%209.98%202.054m-2.3%202.183C6.24%205.818%205.5%208.4%205.5%2012.002c0%203.597.739%206.176%202.172%207.758a2.25%202.25%200%200%200%202.19.678l.817-.195a1.25%201.25%200%200%200%20.953-1.342l-.177-1.746a1.25%201.25%200%200%200-.963-1.091l-1.82-.422l-.135-.043c-.999-.376-1.37-1.591-1.37-3.597c0-1.318.164-2.265.54-2.88a1.75%201.75%200%200%201%201.1-.792l1.685-.39a1.25%201.25%200%200%200%20.962-1.091l.178-1.754a1.25%201.25%200%200%200-.957-1.343l-.817-.192l-.17-.034a2.25%202.25%200%200%200-2.01.71m7.968%203.067l.073-.084a.75.75%200%200%201%20.976-.073l.084.073l3.997%203.997a.75.75%200%200%201%20.073.976l-.073.085l-3.996%204.003a.75.75%200%200%201-1.134-.975l.072-.085l2.711-2.716H12a.75.75%200%200%201-.743-.648l-.006-.102a.75.75%200%200%201%20.648-.743l.102-.007h6.442L15.72%208.28a.75.75%200%200%201-.073-.976l.073-.084z%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%20fill%3D%22currentColor%22%20d%3D%22m9.98%202.054l.222.046l.816.191a2.75%202.75%200%200%201%202.107%202.955L12.947%207a2.75%202.75%200%200%201-2.118%202.402l-1.685.39a.25.25%200%200%200-.157.113c-.197.32-.32%201.033-.32%202.097c0%20.786.066%201.386.188%201.786c.043.14.085.238.116.301l.049.09l.04.015l1.77.408a2.75%202.75%200%200%201%202.117%202.401l.178%201.746a2.75%202.75%200%200%201-2.097%202.953l-.817.195a3.75%203.75%200%200%201-3.65-1.13C4.838%2018.867%204%2015.938%204%2012.002c0-3.942.842-6.874%202.569-8.774A3.75%203.75%200%200%201%209.98%202.054m-2.3%202.183C6.24%205.818%205.5%208.4%205.5%2012.002c0%203.597.739%206.176%202.172%207.758a2.25%202.25%200%200%200%202.19.678l.817-.195a1.25%201.25%200%200%200%20.953-1.342l-.177-1.746a1.25%201.25%200%200%200-.963-1.091l-1.82-.422l-.135-.043c-.999-.376-1.37-1.591-1.37-3.597c0-1.318.164-2.265.54-2.88a1.75%201.75%200%200%201%201.1-.792l1.685-.39a1.25%201.25%200%200%200%20.962-1.091l.178-1.754a1.25%201.25%200%200%200-.957-1.343l-.817-.192l-.17-.034a2.25%202.25%200%200%200-2.01.71m7.968%203.067l.073-.084a.75.75%200%200%201%20.976-.073l.084.073l3.997%203.997a.75.75%200%200%201%20.073.976l-.073.085l-3.996%204.003a.75.75%200%200%201-1.134-.975l.072-.085l2.711-2.716H12a.75.75%200%200%201-.743-.648l-.006-.102a.75.75%200%200%201%20.648-.743l.102-.007h6.442L15.72%208.28a.75.75%200%200%201-.073-.976l.073-.084z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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