Renamed remove token icon

This commit is contained in:
Mitchell McCaffrey 2020-05-21 22:57:05 +10:00
parent 8b83fb8c67
commit 05df26491f
2 changed files with 20 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import React from "react";
import { Flex, Image, Text, Box, IconButton } from "theme-ui";
import RemoveMapIcon from "../../icons/RemoveMapIcon";
import RemoveTokenIcon from "../../icons/RemoveTokenIcon";
import useDataSource from "../../helpers/useDataSource";
import {
@ -70,7 +70,7 @@ function TokenTile({ token, isSelected, onTokenSelect, onTokenRemove }) {
sx={{ borderRadius: "50%" }}
m={1}
>
<RemoveMapIcon />
<RemoveTokenIcon />
</IconButton>
</Box>
)}

View File

@ -0,0 +1,18 @@
import React from "react";
function RemoveTokenIcon() {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
height="24"
viewBox="0 0 24 24"
width="24"
fill="currentcolor"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v10zM18 4h-2.5l-.71-.71c-.18-.18-.44-.29-.7-.29H9.91c-.26 0-.52.11-.7.29L8.5 4H6c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z" />
</svg>
);
}
export default RemoveTokenIcon;