Skip to content

Commit 9ec089a

Browse files
committed
Tweak clipboard icon size
1 parent 6906239 commit 9ec089a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/blocks-ui/src/canvas.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ const Copy = ({ toCopy }) => {
5252
return (
5353
<IconButton
5454
onClick={copyToClipboardOnClick}
55-
sx={{ position: 'absolute', right: 0 }}
55+
sx={{ position: 'absolute', right: '-4px' }}
5656
>
5757
{hasCopied ? (
5858
<Check sx={{ color: 'green' }} aria-label="Copied" />
5959
) : (
60-
<Clipboard aria-label="Copy" />
60+
<Clipboard size={16} aria-label="Copy" />
6161
)}
6262
</IconButton>
6363
)

0 commit comments

Comments
 (0)