feat: smaller play button

This commit is contained in:
Deluan 2020-02-05 13:19:37 -05:00
parent b5dadf55f4
commit 6aaee4342e
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@ const PlayButton = ({
const dispatch = useDispatch()
return (
<IconButton onClick={() => dispatch(action(record))} {...rest}>
<IconButton
onClick={() => dispatch(action(record))}
{...rest}
size={'small'}
>
{icon}
</IconButton>
)