tent arrows down icon

tent-arrows-down from Font Awesome 6 Solid by Dave Gandy · Regular · CC-BY-4.0 Attribution required.

Name
tent-arrows-down
Set
Font Awesome 6 Solid
Style
Regular
Viewbox
576×512
License
CC BY 4.0

The same icon in other sets

Related icons in Font Awesome 6 Solid

Use the tent arrows down icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 576 512"><path fill="currentColor" d="M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24S88 10.7 88 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm-254.4 54.6c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9c3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>

React

import type { SVGProps } from "react";

export function Fa6SolidTentArrowsDown(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 576 512"><path fill="currentColor" d="M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24S88 10.7 88 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm-254.4 54.6c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9c3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 576 512"><path fill="currentColor" d="M209.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24S88 10.7 88 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm-254.4 54.6c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512h160c17.7 0 32-14.3 32-32V361.9c0-5.5 4.4-9.9 9.9-9.9c3.7 0 7.2 2.1 8.8 5.5l68.4 136.8c5.4 10.8 16.5 17.7 28.6 17.7h76.2c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z"/></svg>
</template>

CSS

.icon-tent-arrows-down {
  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%20576%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M209.8%20111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9%2036V24c0-13.3-10.7-24-24-24S88%2010.7%2088%2024v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9%201.8s-8.1%2025%201.8%2033.9l80%2072c9.1%208.2%2023%208.2%2032.1%200l80-72c9.9-8.9%2010.7-24%201.8-33.9zm352%200c-8.9-9.9-24-10.7-33.9-1.8l-39.9%2036V24c0-13.3-10.7-24-24-24s-24%2010.7-24%2024v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9%201.8s-8.1%2025%201.8%2033.9l80%2072c9.1%208.2%2023%208.2%2032.1%200l80-72c9.9-8.9%2010.7-24%201.8-33.9zm-254.4%2054.6c-11.5-8.7-27.3-8.7-38.8%200l-168%20128c-6.6%205-11%2012.5-12.3%2020.7l-24%20160c-1.4%209.2%201.3%2018.6%207.4%2025.6S86.7%20512%2096%20512h160c17.7%200%2032-14.3%2032-32V361.9c0-5.5%204.4-9.9%209.9-9.9c3.7%200%207.2%202.1%208.8%205.5l68.4%20136.8c5.4%2010.8%2016.5%2017.7%2028.6%2017.7h76.2c9.3%200%2018.2-4.1%2024.2-11.1s8.8-16.4%207.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z%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%20576%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M209.8%20111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9%2036V24c0-13.3-10.7-24-24-24S88%2010.7%2088%2024v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9%201.8s-8.1%2025%201.8%2033.9l80%2072c9.1%208.2%2023%208.2%2032.1%200l80-72c9.9-8.9%2010.7-24%201.8-33.9zm352%200c-8.9-9.9-24-10.7-33.9-1.8l-39.9%2036V24c0-13.3-10.7-24-24-24s-24%2010.7-24%2024v122.1l-39.9-36c-9.9-8.9-25-8.1-33.9%201.8s-8.1%2025%201.8%2033.9l80%2072c9.1%208.2%2023%208.2%2032.1%200l80-72c9.9-8.9%2010.7-24%201.8-33.9zm-254.4%2054.6c-11.5-8.7-27.3-8.7-38.8%200l-168%20128c-6.6%205-11%2012.5-12.3%2020.7l-24%20160c-1.4%209.2%201.3%2018.6%207.4%2025.6S86.7%20512%2096%20512h160c17.7%200%2032-14.3%2032-32V361.9c0-5.5%204.4-9.9%209.9-9.9c3.7%200%207.2%202.1%208.8%205.5l68.4%20136.8c5.4%2010.8%2016.5%2017.7%2028.6%2017.7h76.2c9.3%200%2018.2-4.1%2024.2-11.1s8.8-16.4%207.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fa6-solid/tent-arrows-down.svg?color=%231a73e8&size=48