import React from "react"; import { ThemedStyledFunction } from "styled-components"; import { BlockAnchor, BlockBody, Theme } from "../styles"; type BlockLinkProps = { children: React.ReactNode; } & ThemedStyledFunction<"a", Theme>; const BlockLink = ({ children, ...attributes }: BlockLinkProps) => { return ( {children} ); }; export default BlockLink;