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