webhook from Material Symbols by Google · Regular · Actions · Apache-2.0 Free for personal and commercial use.

Name
webhook
Set
Material Symbols
Style
Regular
Category
Actions
Viewbox
24×24
License
Apache 2.0
Aliases
webhook-outline, webhook-outline-sharp, webhook-sharp

1 other variant in Material Symbols

The same icon in other sets

More actions icons from Material Symbols

Use the webhook icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7 21q-2.075 0-3.537-1.463T2 16q0-1.825 1.138-3.187T6 11.1v2.075q-.875.3-1.437 1.075T4 16q0 1.25.875 2.125T7 19t2.125-.875T10 16v-1h5.875q.2-.225.488-.363T17 14.5q.625 0 1.063.438T18.5 16t-.437 1.063T17 17.5q-.35 0-.638-.137T15.876 17H11.9q-.35 1.725-1.713 2.863T7 21m10 0q-1.4 0-2.537-.687T12.675 18.5h2.675q.35.25.775.375T17 19q1.25 0 2.125-.875T20 16t-.875-2.125T17 13q-.5 0-.925.138t-.8.412l-3.05-5.075q-.525-.1-.875-.5T11 7q0-.625.438-1.062T12.5 5.5t1.063.438T14 7v.213q0 .087-.05.212l2.175 3.65q.2-.05.425-.062T17 11q2.075 0 3.538 1.463T22 16t-1.463 3.538T17 21M7 17.5q-.625 0-1.062-.437T5.5 16q0-.55.35-.95t.85-.525l2.35-3.9q-.725-.675-1.138-1.612T7.5 7q0-2.075 1.463-3.537T12.5 2t3.538 1.463T17.5 7h-2q0-1.25-.875-2.125T12.5 4t-2.125.875T9.5 7q0 1.075.65 1.888t1.65 1.037L8.425 15.55q.05.125.063.225T8.5 16q0 .625-.437 1.063T7 17.5"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsWebhook(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="M7 21q-2.075 0-3.537-1.463T2 16q0-1.825 1.138-3.187T6 11.1v2.075q-.875.3-1.437 1.075T4 16q0 1.25.875 2.125T7 19t2.125-.875T10 16v-1h5.875q.2-.225.488-.363T17 14.5q.625 0 1.063.438T18.5 16t-.437 1.063T17 17.5q-.35 0-.638-.137T15.876 17H11.9q-.35 1.725-1.713 2.863T7 21m10 0q-1.4 0-2.537-.687T12.675 18.5h2.675q.35.25.775.375T17 19q1.25 0 2.125-.875T20 16t-.875-2.125T17 13q-.5 0-.925.138t-.8.412l-3.05-5.075q-.525-.1-.875-.5T11 7q0-.625.438-1.062T12.5 5.5t1.063.438T14 7v.213q0 .087-.05.212l2.175 3.65q.2-.05.425-.062T17 11q2.075 0 3.538 1.463T22 16t-1.463 3.538T17 21M7 17.5q-.625 0-1.062-.437T5.5 16q0-.55.35-.95t.85-.525l2.35-3.9q-.725-.675-1.138-1.612T7.5 7q0-2.075 1.463-3.537T12.5 2t3.538 1.463T17.5 7h-2q0-1.25-.875-2.125T12.5 4t-2.125.875T9.5 7q0 1.075.65 1.888t1.65 1.037L8.425 15.55q.05.125.063.225T8.5 16q0 .625-.437 1.063T7 17.5"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M7 21q-2.075 0-3.537-1.463T2 16q0-1.825 1.138-3.187T6 11.1v2.075q-.875.3-1.437 1.075T4 16q0 1.25.875 2.125T7 19t2.125-.875T10 16v-1h5.875q.2-.225.488-.363T17 14.5q.625 0 1.063.438T18.5 16t-.437 1.063T17 17.5q-.35 0-.638-.137T15.876 17H11.9q-.35 1.725-1.713 2.863T7 21m10 0q-1.4 0-2.537-.687T12.675 18.5h2.675q.35.25.775.375T17 19q1.25 0 2.125-.875T20 16t-.875-2.125T17 13q-.5 0-.925.138t-.8.412l-3.05-5.075q-.525-.1-.875-.5T11 7q0-.625.438-1.062T12.5 5.5t1.063.438T14 7v.213q0 .087-.05.212l2.175 3.65q.2-.05.425-.062T17 11q2.075 0 3.538 1.463T22 16t-1.463 3.538T17 21M7 17.5q-.625 0-1.062-.437T5.5 16q0-.55.35-.95t.85-.525l2.35-3.9q-.725-.675-1.138-1.612T7.5 7q0-2.075 1.463-3.537T12.5 2t3.538 1.463T17.5 7h-2q0-1.25-.875-2.125T12.5 4t-2.125.875T9.5 7q0 1.075.65 1.888t1.65 1.037L8.425 15.55q.05.125.063.225T8.5 16q0 .625-.437 1.063T7 17.5"/></svg>
</template>

CSS

.icon-webhook {
  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%22M7%2021q-2.075%200-3.537-1.463T2%2016q0-1.825%201.138-3.187T6%2011.1v2.075q-.875.3-1.437%201.075T4%2016q0%201.25.875%202.125T7%2019t2.125-.875T10%2016v-1h5.875q.2-.225.488-.363T17%2014.5q.625%200%201.063.438T18.5%2016t-.437%201.063T17%2017.5q-.35%200-.638-.137T15.876%2017H11.9q-.35%201.725-1.713%202.863T7%2021m10%200q-1.4%200-2.537-.687T12.675%2018.5h2.675q.35.25.775.375T17%2019q1.25%200%202.125-.875T20%2016t-.875-2.125T17%2013q-.5%200-.925.138t-.8.412l-3.05-5.075q-.525-.1-.875-.5T11%207q0-.625.438-1.062T12.5%205.5t1.063.438T14%207v.213q0%20.087-.05.212l2.175%203.65q.2-.05.425-.062T17%2011q2.075%200%203.538%201.463T22%2016t-1.463%203.538T17%2021M7%2017.5q-.625%200-1.062-.437T5.5%2016q0-.55.35-.95t.85-.525l2.35-3.9q-.725-.675-1.138-1.612T7.5%207q0-2.075%201.463-3.537T12.5%202t3.538%201.463T17.5%207h-2q0-1.25-.875-2.125T12.5%204t-2.125.875T9.5%207q0%201.075.65%201.888t1.65%201.037L8.425%2015.55q.05.125.063.225T8.5%2016q0%20.625-.437%201.063T7%2017.5%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%22M7%2021q-2.075%200-3.537-1.463T2%2016q0-1.825%201.138-3.187T6%2011.1v2.075q-.875.3-1.437%201.075T4%2016q0%201.25.875%202.125T7%2019t2.125-.875T10%2016v-1h5.875q.2-.225.488-.363T17%2014.5q.625%200%201.063.438T18.5%2016t-.437%201.063T17%2017.5q-.35%200-.638-.137T15.876%2017H11.9q-.35%201.725-1.713%202.863T7%2021m10%200q-1.4%200-2.537-.687T12.675%2018.5h2.675q.35.25.775.375T17%2019q1.25%200%202.125-.875T20%2016t-.875-2.125T17%2013q-.5%200-.925.138t-.8.412l-3.05-5.075q-.525-.1-.875-.5T11%207q0-.625.438-1.062T12.5%205.5t1.063.438T14%207v.213q0%20.087-.05.212l2.175%203.65q.2-.05.425-.062T17%2011q2.075%200%203.538%201.463T22%2016t-1.463%203.538T17%2021M7%2017.5q-.625%200-1.062-.437T5.5%2016q0-.55.35-.95t.85-.525l2.35-3.9q-.725-.675-1.138-1.612T7.5%207q0-2.075%201.463-3.537T12.5%202t3.538%201.463T17.5%207h-2q0-1.25-.875-2.125T12.5%204t-2.125.875T9.5%207q0%201.075.65%201.888t1.65%201.037L8.425%2015.55q.05.125.063.225T8.5%2016q0%20.625-.437%201.063T7%2017.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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