23 lines
487 B
JavaScript
23 lines
487 B
JavaScript
function ArrowBottomH() {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="16"
|
|
height="9"
|
|
viewBox="0 0 16 9"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M14.6 1.45834L9.16669 6.89167C8.52502 7.53334 7.47503 7.53334 6.83336 6.89167L1.40002 1.45834"
|
|
stroke="#616161"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ArrowBottomH;
|