25 lines
527 B
JavaScript
25 lines
527 B
JavaScript
|
const expressIcon = (
|
||
|
<svg
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="24"
|
||
|
height="24"
|
||
|
fill="currentColor"
|
||
|
viewBox="0 0 24 24"
|
||
|
>
|
||
|
<path
|
||
|
stroke="#1E1E1E"
|
||
|
strokeLinejoin="round"
|
||
|
strokeWidth="1.5"
|
||
|
d="M18.25 12a6.25 6.25 0 1 1-12.5 0 6.25 6.25 0 0 1 12.5 0Z"
|
||
|
/>
|
||
|
<path fill="#1E1E1E" d="M10 3h4v3h-4z" />
|
||
|
<rect width="1.5" height="5" x="11.25" y="8" fill="#1E1E1E" rx=".75" />
|
||
|
<path
|
||
|
fill="#1E1E1E"
|
||
|
d="m15.7 4.816 1.66 1.078-1.114 1.718-1.661-1.078z"
|
||
|
/>
|
||
|
</svg>
|
||
|
);
|
||
|
|
||
|
export default expressIcon;
|