aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Emoji.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Emoji.tsx b/src/Emoji.tsx
index 275670e..e392fa7 100644
--- a/src/Emoji.tsx
+++ b/src/Emoji.tsx
@@ -11,7 +11,8 @@ const Emoji: FC<Props> = ({ children }) => {
return (
<Image
src={`${config.CDN}${config.paths.emojiRoot}/${src}`}
- width={16}
+ style={{ marginBottom: '-4px' }}
+ height={18}
alt={`${src}-emoji`}
/>
);