addons/isl/src/icons/DownwardIcon.tsxblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318import React from 'react';
b69ab319
b69ab3110export const DownwardArrow = (props: React.SVGProps<SVGSVGElement>) => (
b69ab3111 <svg
b69ab3112 width="16"
b69ab3113 height="16"
b69ab3114 viewBox="0 0 459 479"
b69ab3115 fill="none"
b69ab3116 stroke="currentColor"
b69ab3117 xmlns="http://www.w3.org/2000/svg"
b69ab3118 {...props}>
b69ab3119 <path
b69ab3120 d="M368 36.0001H309.5C178.5 36 121 76.5 121 201.5C121 314.7 121 301 121 290.5M75.5 304.5H167L121 360.5L75.5 304.5Z"
b69ab3121 strokeWidth="71"
b69ab3122 />
b69ab3123 </svg>
b69ab3124);