From 31eb5143b0fab7befe86ca8c016fb7ea1b401c08 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 28 Nov 2022 21:46:31 -0500 Subject: 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 --- src/components/BlockLink.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/components/BlockLink.tsx') 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; const BlockLink = ({ children, ...attributes }: BlockLinkProps) => { return ( -- cgit