groups: tabs use cursor: pointer

This commit is contained in:
Matilde Park 2020-10-08 12:02:53 -04:00
parent 8fb1727fc6
commit 584268670c

View File

@ -90,6 +90,7 @@ const Tab = ({ selected, id, label, setSelected }) => (
borderBottom={selected === id ? 1 : 0}
borderBottomColor="black"
mr={2}
cursor='pointer'
onClick={() => setSelected(id)}
>
<Text color={selected === id ? "black" : "gray"}>{label}</Text>