mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-26 21:07:52 +00:00
14 lines
375 B
TypeScript
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>
|
|
|
|
|
|
|
|
|
|
);
|
|
};
|
|
|