1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00

fix warning

This commit is contained in:
Mikael Finstad 2021-01-26 21:27:59 +01:00
parent 6d5a2d85b8
commit 6554ce000c
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

View File

@ -20,9 +20,9 @@ const CopyClipboardButton = memo(({ text, style }) => {
}, [animation, text]);
return (
<motion.div animate={animation} style={{ display: 'inline-block', cursor: 'pointer', ...style }}>
<motion.span animate={animation} style={{ display: 'inline-block', cursor: 'pointer', ...style }}>
<FaClipboard title={t('Copy to clipboard')} onClick={onClick} />
</motion.div>
</motion.span>
);
});