1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 12:23:39 +02:00
metamask-extension/ui/app/pages/swaps/awaiting-swap/swap-failure-icon.js

19 lines
495 B
JavaScript
Raw Normal View History

import React from 'react';
2020-10-06 20:28:38 +02:00
2020-11-03 00:41:28 +01:00
export default function SwapFailureIcon() {
2020-10-06 20:28:38 +02:00
return (
2020-11-03 00:41:28 +01:00
<svg
width="45"
height="39"
viewBox="0 0 45 39"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M22.203 0.424438L0.285706 38.2816H44.1203L22.203 0.424438ZM22.203 8.39436L37.2064 34.2966H7.19961L22.203 8.39436ZM20.2105 16.3643V24.3342H24.1955V16.3643H20.2105ZM20.2105 28.3192V32.3041H24.1955V28.3192"
fill="#D73A49"
/>
2020-10-06 20:28:38 +02:00
</svg>
);
2020-10-06 20:28:38 +02:00
}