Skip to content
Snippets Groups Projects
Commit 6fff72b4 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

update icons

parent b35a4d32
Branches
Tags
No related merge requests found
......@@ -9,8 +9,9 @@ const HeaderWithBack = ({ name }) =>
className="cursor-pointer text-brand-hover mr2"
onClick={() => window.history.back()}
>
{ /* TODO - this should be an arrow */ }
<Icon name="chevronleft" />
<div className="circle">
<Icon name="backArrow" />
</div>
</div>
<h2>{name}</h2>
</div>
......
This diff is collapsed.
......@@ -63,7 +63,7 @@ const CollectionButton = ({ name, color, slug }) =>
</div>
<Icon
className="mb4 mt2"
name="all"
name="collection"
size={COLLECTION_ICON_SIZE}
style={{ color }}
/>
......
......@@ -44,8 +44,8 @@ const Item = ({ id, description, name, created, by, selected, favorite, archived
<Link to={`/questions/${id}/move`}>
<Icon
className="cursor-pointer text-brand-hover transition-color"
name={ archived ? "unarchive" : "archive"}
size={20}
name="move"
size={18}
/>
</Link>
</Tooltip>
......@@ -54,7 +54,7 @@ const Item = ({ id, description, name, created, by, selected, favorite, archived
className="cursor-pointer text-brand-hover transition-color"
name={ archived ? "unarchive" : "archive"}
onClick={() => setArchived(id, !archived, true)}
size={20}
size={18}
/>
</Tooltip>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment