send to back icon

send-to-back from Huge Icons by Hugeicons · Stroke · MIT Free for personal and commercial use.

Name
send-to-back
Set
Huge Icons
Style
Stroke
Viewbox
24×24
License
MIT

The same icon in other sets

Related icons in Huge Icons

Use the send to back icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M9.728 3.365C10 3.9 10 4.6 10 6s0 2.1-.272 2.635a2.5 2.5 0 0 1-1.093 1.093C8.1 10 7.4 10 6 10s-2.1 0-2.635-.272a2.5 2.5 0 0 1-1.093-1.093C2 8.1 2 7.4 2 6s0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2s2.1 0 2.635.272a2.5 2.5 0 0 1 1.093 1.093m12 12C22 15.9 22 16.6 22 18s0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C20.1 22 19.4 22 18 22s-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.092-1.092C14 20.1 14 19.4 14 18s0-2.1.273-2.635a2.5 2.5 0 0 1 1.092-1.092C15.9 14 16.6 14 18 14s2.1 0 2.635.273a2.5 2.5 0 0 1 1.092 1.092M14 6c.93 0 1.395 0 1.776.102a3 3 0 0 1 2.122 2.122C18 8.605 18 9.07 18 10M6 14c0 .93 0 1.395.102 1.777a3 3 0 0 0 2.122 2.12C8.605 18 9.07 18 10 18"/></svg>

React

import type { SVGProps } from "react";

export function HugeiconsSendToBack(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5" d="M9.728 3.365C10 3.9 10 4.6 10 6s0 2.1-.272 2.635a2.5 2.5 0 0 1-1.093 1.093C8.1 10 7.4 10 6 10s-2.1 0-2.635-.272a2.5 2.5 0 0 1-1.093-1.093C2 8.1 2 7.4 2 6s0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2s2.1 0 2.635.272a2.5 2.5 0 0 1 1.093 1.093m12 12C22 15.9 22 16.6 22 18s0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C20.1 22 19.4 22 18 22s-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.092-1.092C14 20.1 14 19.4 14 18s0-2.1.273-2.635a2.5 2.5 0 0 1 1.092-1.092C15.9 14 16.6 14 18 14s2.1 0 2.635.273a2.5 2.5 0 0 1 1.092 1.092M14 6c.93 0 1.395 0 1.776.102a3 3 0 0 1 2.122 2.122C18 8.605 18 9.07 18 10M6 14c0 .93 0 1.395.102 1.777a3 3 0 0 0 2.122 2.12C8.605 18 9.07 18 10 18"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M9.728 3.365C10 3.9 10 4.6 10 6s0 2.1-.272 2.635a2.5 2.5 0 0 1-1.093 1.093C8.1 10 7.4 10 6 10s-2.1 0-2.635-.272a2.5 2.5 0 0 1-1.093-1.093C2 8.1 2 7.4 2 6s0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2s2.1 0 2.635.272a2.5 2.5 0 0 1 1.093 1.093m12 12C22 15.9 22 16.6 22 18s0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C20.1 22 19.4 22 18 22s-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.092-1.092C14 20.1 14 19.4 14 18s0-2.1.273-2.635a2.5 2.5 0 0 1 1.092-1.092C15.9 14 16.6 14 18 14s2.1 0 2.635.273a2.5 2.5 0 0 1 1.092 1.092M14 6c.93 0 1.395 0 1.776.102a3 3 0 0 1 2.122 2.122C18 8.605 18 9.07 18 10M6 14c0 .93 0 1.395.102 1.777a3 3 0 0 0 2.122 2.12C8.605 18 9.07 18 10 18"/></svg>
</template>

CSS

.icon-send-to-back {
  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%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22M9.728%203.365C10%203.9%2010%204.6%2010%206s0%202.1-.272%202.635a2.5%202.5%200%200%201-1.093%201.093C8.1%2010%207.4%2010%206%2010s-2.1%200-2.635-.272a2.5%202.5%200%200%201-1.093-1.093C2%208.1%202%207.4%202%206s0-2.1.272-2.635a2.5%202.5%200%200%201%201.093-1.093C3.9%202%204.6%202%206%202s2.1%200%202.635.272a2.5%202.5%200%200%201%201.093%201.093m12%2012C22%2015.9%2022%2016.6%2022%2018s0%202.1-.273%202.635a2.5%202.5%200%200%201-1.092%201.092C20.1%2022%2019.4%2022%2018%2022s-2.1%200-2.635-.273a2.5%202.5%200%200%201-1.092-1.092C14%2020.1%2014%2019.4%2014%2018s0-2.1.273-2.635a2.5%202.5%200%200%201%201.092-1.092C15.9%2014%2016.6%2014%2018%2014s2.1%200%202.635.273a2.5%202.5%200%200%201%201.092%201.092M14%206c.93%200%201.395%200%201.776.102a3%203%200%200%201%202.122%202.122C18%208.605%2018%209.07%2018%2010M6%2014c0%20.93%200%201.395.102%201.777a3%203%200%200%200%202.122%202.12C8.605%2018%209.07%2018%2010%2018%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%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20d%3D%22M9.728%203.365C10%203.9%2010%204.6%2010%206s0%202.1-.272%202.635a2.5%202.5%200%200%201-1.093%201.093C8.1%2010%207.4%2010%206%2010s-2.1%200-2.635-.272a2.5%202.5%200%200%201-1.093-1.093C2%208.1%202%207.4%202%206s0-2.1.272-2.635a2.5%202.5%200%200%201%201.093-1.093C3.9%202%204.6%202%206%202s2.1%200%202.635.272a2.5%202.5%200%200%201%201.093%201.093m12%2012C22%2015.9%2022%2016.6%2022%2018s0%202.1-.273%202.635a2.5%202.5%200%200%201-1.092%201.092C20.1%2022%2019.4%2022%2018%2022s-2.1%200-2.635-.273a2.5%202.5%200%200%201-1.092-1.092C14%2020.1%2014%2019.4%2014%2018s0-2.1.273-2.635a2.5%202.5%200%200%201%201.092-1.092C15.9%2014%2016.6%2014%2018%2014s2.1%200%202.635.273a2.5%202.5%200%200%201%201.092%201.092M14%206c.93%200%201.395%200%201.776.102a3%203%200%200%201%202.122%202.122C18%208.605%2018%209.07%2018%2010M6%2014c0%20.93%200%201.395.102%201.777a3%203%200%200%200%202.122%202.12C8.605%2018%209.07%2018%2010%2018%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/hugeicons/send-to-back.svg?color=%231a73e8&size=48