Qortal-Hub/src/assets/Icons/ArrowDownIcon.tsx
2024-09-20 03:57:10 +03:00

14 lines
375 B
TypeScript

import React from 'react';
export const ArrowDownIcon= ({ color = 'white', height, width }) => {
return (
<svg width="10" height="9" viewBox="0 0 10 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.7" d="M4.944 8.12L-1.86823e-07 0.992L0.648 0.536L4.944 6.776L9.24 0.536L9.888 0.992L4.944 8.12Z" fill={color}/>
</svg>
);
};