round assistant direction icon

round-assistant-direction from Google Material Icons by Material Design Authors · Baseline · Navigation · Apache-2.0 Free for personal and commercial use.

Name
round-assistant-direction
Set
Google Material Icons
Style
Baseline
Category
Navigation
Viewbox
24×24
License
Apache 2.0

More navigation icons from Google Material Icons

Use the round assistant direction icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M13.5 10H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-2h3.5v1.29c0 .45.54.67.85.35l2.29-2.29c.2-.2.2-.51 0-.71l-2.29-2.29a.5.5 0 0 0-.85.35zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11s11-4.9 11-11S18.1 1 12 1m7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58a.93.93 0 0 1 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16"/></svg>

React

import type { SVGProps } from "react";

export function IcRoundAssistantDirection(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="M13.5 10H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-2h3.5v1.29c0 .45.54.67.85.35l2.29-2.29c.2-.2.2-.51 0-.71l-2.29-2.29a.5.5 0 0 0-.85.35zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11s11-4.9 11-11S18.1 1 12 1m7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58a.93.93 0 0 1 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M13.5 10H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-2h3.5v1.29c0 .45.54.67.85.35l2.29-2.29c.2-.2.2-.51 0-.71l-2.29-2.29a.5.5 0 0 0-.85.35zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11s11-4.9 11-11S18.1 1 12 1m7.73 11.58l-7.19 7.22c-.35.27-.79.27-1.15 0L4.2 12.58a.93.93 0 0 1 0-1.16l7.19-7.22c.35-.27.79-.27 1.15 0l7.19 7.22c.36.27.36.8 0 1.16"/></svg>
</template>

CSS

.icon-round-assistant-direction {
  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%22M13.5%2010H9c-.55%200-1%20.45-1%201v3c0%20.55.45%201%201%201s1-.45%201-1v-2h3.5v1.29c0%20.45.54.67.85.35l2.29-2.29c.2-.2.2-.51%200-.71l-2.29-2.29a.5.5%200%200%200-.85.35zM12%201C5.9%201%201%205.9%201%2012s4.9%2011%2011%2011s11-4.9%2011-11S18.1%201%2012%201m7.73%2011.58l-7.19%207.22c-.35.27-.79.27-1.15%200L4.2%2012.58a.93.93%200%200%201%200-1.16l7.19-7.22c.35-.27.79-.27%201.15%200l7.19%207.22c.36.27.36.8%200%201.16%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%22M13.5%2010H9c-.55%200-1%20.45-1%201v3c0%20.55.45%201%201%201s1-.45%201-1v-2h3.5v1.29c0%20.45.54.67.85.35l2.29-2.29c.2-.2.2-.51%200-.71l-2.29-2.29a.5.5%200%200%200-.85.35zM12%201C5.9%201%201%205.9%201%2012s4.9%2011%2011%2011s11-4.9%2011-11S18.1%201%2012%201m7.73%2011.58l-7.19%207.22c-.35.27-.79.27-1.15%200L4.2%2012.58a.93.93%200%200%201%200-1.16l7.19-7.22c.35-.27.79-.27%201.15%200l7.19%207.22c.36.27.36.8%200%201.16%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ic/round-assistant-direction.svg?color=%231a73e8&size=48