diff --git a/plugins/blog/components/Share.tsx b/plugins/blog/components/Share.tsx index 77879f16..880cf714 100644 --- a/plugins/blog/components/Share.tsx +++ b/plugins/blog/components/Share.tsx @@ -4,13 +4,18 @@ import IconBrandLinkedin from "tabler_icons_tsx/brand-linkedin.tsx"; import IconBrandReddit from "tabler_icons_tsx/brand-reddit.tsx"; import IconBrandTwitter from "tabler_icons_tsx/brand-twitter.tsx"; +interface ShareProps { + url: URL; + title: string; +} + /** * Dynamically generates links for sharing the current content on the major * social media platforms. * * @see {@link https://schier.co/blog/pure-html-share-buttons} */ -export default function Share(props: { url: URL; title: string }) { +export default function Share(props: ShareProps) { return (
Share