eye-arrow-right-outline from Material Design Icons by Pictogrammers · Outline · Apache-2.0 Free for personal and commercial use.

Name
eye-arrow-right-outline
Set
Material Design Icons
Style
Outline
Viewbox
24×24
License
Apache 2.0
Aliases
view-arrow-right-outline

1 other variant in Material Design Icons

Related icons in Material Design Icons

Use the eye arrow right icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4 0-.7.1-1.1.1c-3.8 0-7.2-2.1-8.8-5.5c1.6-3.4 5-5.5 8.8-5.5s7.2 2.1 8.8 5.5c-.1.2-.3.4-.4.7c.7.2 1.3.4 1.9.8c.3-.5.5-1 .7-1.5c-1.7-4.4-6-7.5-11-7.5M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3s3-1.3 3-3s-1.3-3-3-3m7 12v-2h-4v-2h4v-2l3 3z"/></svg>

React

import type { SVGProps } from "react";

export function MdiEyeArrowRightOutline(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="M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4 0-.7.1-1.1.1c-3.8 0-7.2-2.1-8.8-5.5c1.6-3.4 5-5.5 8.8-5.5s7.2 2.1 8.8 5.5c-.1.2-.3.4-.4.7c.7.2 1.3.4 1.9.8c.3-.5.5-1 .7-1.5c-1.7-4.4-6-7.5-11-7.5M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3s3-1.3 3-3s-1.3-3-3-3m7 12v-2h-4v-2h4v-2l3 3z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M12 4.5C7 4.5 2.7 7.6 1 12c1.7 4.4 6 7.5 11 7.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4 0-.7.1-1.1.1c-3.8 0-7.2-2.1-8.8-5.5c1.6-3.4 5-5.5 8.8-5.5s7.2 2.1 8.8 5.5c-.1.2-.3.4-.4.7c.7.2 1.3.4 1.9.8c.3-.5.5-1 .7-1.5c-1.7-4.4-6-7.5-11-7.5M12 9c-1.7 0-3 1.3-3 3s1.3 3 3 3s3-1.3 3-3s-1.3-3-3-3m7 12v-2h-4v-2h4v-2l3 3z"/></svg>
</template>

CSS

.icon-eye-arrow-right-outline {
  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%22M12%204.5C7%204.5%202.7%207.6%201%2012c1.7%204.4%206%207.5%2011%207.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4%200-.7.1-1.1.1c-3.8%200-7.2-2.1-8.8-5.5c1.6-3.4%205-5.5%208.8-5.5s7.2%202.1%208.8%205.5c-.1.2-.3.4-.4.7c.7.2%201.3.4%201.9.8c.3-.5.5-1%20.7-1.5c-1.7-4.4-6-7.5-11-7.5M12%209c-1.7%200-3%201.3-3%203s1.3%203%203%203s3-1.3%203-3s-1.3-3-3-3m7%2012v-2h-4v-2h4v-2l3%203z%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%22M12%204.5C7%204.5%202.7%207.6%201%2012c1.7%204.4%206%207.5%2011%207.5h1.1c-.1-.3-.1-.6-.1-1s0-.7.1-1.1c-.4%200-.7.1-1.1.1c-3.8%200-7.2-2.1-8.8-5.5c1.6-3.4%205-5.5%208.8-5.5s7.2%202.1%208.8%205.5c-.1.2-.3.4-.4.7c.7.2%201.3.4%201.9.8c.3-.5.5-1%20.7-1.5c-1.7-4.4-6-7.5-11-7.5M12%209c-1.7%200-3%201.3-3%203s1.3%203%203%203s3-1.3%203-3s-1.3-3-3-3m7%2012v-2h-4v-2h4v-2l3%203z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/mdi/eye-arrow-right-outline.svg?color=%231a73e8&size=48

Eye Arrow Right outline icon — Material Design Icons · IconsDB