aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/BlockLink.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/BlockLink.tsx')
-rw-r--r--src/components/BlockLink.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/BlockLink.tsx b/src/components/BlockLink.tsx
index 3144c86..f2724e7 100644
--- a/src/components/BlockLink.tsx
+++ b/src/components/BlockLink.tsx
@@ -3,7 +3,7 @@ import { BlockAnchor, BlockBody } from "../styles";
const BlockLink = ({ children, ...attributes }) => {
return (
- <BlockBody>
+ <BlockBody theme={{ link: true }}>
<BlockAnchor {...attributes}>{children}</BlockAnchor>
</BlockBody>
);