mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
a7ac83f9d3
* swap hex colors in ui/pages * update snapshots
19 lines
514 B
JavaScript
19 lines
514 B
JavaScript
import React from 'react';
|
|
|
|
export default function SwapFailureIcon() {
|
|
return (
|
|
<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="var(--color-error-default)"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|