628 B25 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8import React from 'react';
9
10export const DownwardArrow = (props: React.SVGProps<SVGSVGElement>) => (
11 <svg
12 width="16"
13 height="16"
14 viewBox="0 0 459 479"
15 fill="none"
16 stroke="currentColor"
17 xmlns="http://www.w3.org/2000/svg"
18 {...props}>
19 <path
20 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"
21 strokeWidth="71"
22 />
23 </svg>
24);
25