aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2022-11-28 21:46:31 -0500
committerGitHub <noreply@github.com>2022-11-28 21:46:31 -0500
commit31eb5143b0fab7befe86ca8c016fb7ea1b401c08 (patch)
treef7e9bfecd3f811b34b961c56a444ef3700ef01c7 /src/components
parentffecaf6931f8b6565b567b59a881654d11f4e934 (diff)
downloadsubmelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.tar.gz
submelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.tar.bz2
submelon.dev-31eb5143b0fab7befe86ca8c016fb7ea1b401c08.zip
Update build with changes (#27)
* Update filetype * Update timestamp of app before build * Fix version specification for step * Fix BlockLink typing * Update with my actual role
Diffstat (limited to 'src/components')
-rw-r--r--src/components/BlockLink.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/BlockLink.tsx b/src/components/BlockLink.tsx
index c0f2ad6..6b841f0 100644
--- a/src/components/BlockLink.tsx
+++ b/src/components/BlockLink.tsx
@@ -1,10 +1,10 @@
import React from "react";
-import { ThemedStyledFunction } from "styled-components";
-import { BlockAnchor, BlockBody, Theme } from "../styles";
+import { BlockAnchor, BlockBody } from "../styles";
type BlockLinkProps = {
- children: React.ReactNode;
-} & ThemedStyledFunction<"a", Theme>;
+ children?: React.ReactNode;
+ as?: undefined;
+} & React.LinkHTMLAttributes<HTMLAnchorElement>;
const BlockLink = ({ children, ...attributes }: BlockLinkProps) => {
return (