feat: smaller play button

This commit is contained in:
Deluan
2020-02-05 13:19:37 -05:00
parent b5dadf55f4
commit 6aaee4342e
+5 -1
View File
@@ -16,7 +16,11 @@ const PlayButton = ({
const dispatch = useDispatch() const dispatch = useDispatch()
return ( return (
<IconButton onClick={() => dispatch(action(record))} {...rest}> <IconButton
onClick={() => dispatch(action(record))}
{...rest}
size={'small'}
>
{icon} {icon}
</IconButton> </IconButton>
) )