feat: smaller play button
This commit is contained in:
parent
b5dadf55f4
commit
6aaee4342e
1 changed files with 5 additions and 1 deletions
|
|
@ -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>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue