Change add party memeber icon and added titles to icon buttons

This commit is contained in:
Mitchell McCaffrey
2020-04-09 11:12:46 +10:00
parent 331c323f31
commit 0f4a5caf94
6 changed files with 26 additions and 8 deletions

View File

@@ -9,7 +9,8 @@ function SizeInput({ value, onChange }) {
</Text>
<Flex sx={{ alignItems: "center", justifyContent: "center" }}>
<IconButton
aria-label="Lower token size"
aria-label="Lower Token Size"
title="Lower Token Size"
onClick={() => value > 1 && onChange(value - 1)}
>
<svg
@@ -25,7 +26,8 @@ function SizeInput({ value, onChange }) {
</IconButton>
<Text>{value}</Text>
<IconButton
aria-label="Increase token size"
aria-label="Increase Token Size"
title="Increase Token Size"
onClick={() => onChange(value + 1)}
>
<svg