diff --git a/packages/blocks/src/components/NextLink.tsx b/packages/blocks/src/components/NextLink.tsx deleted file mode 100644 index eba77a021..000000000 --- a/packages/blocks/src/components/NextLink.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import { gql } from '@apollo/client'; -import React from 'react'; -import Link from 'next/link.js'; -import { useBlocksTheme } from './WordPressBlocksProvider.js'; -import { getStyles } from '../utils/index.js'; - -type NextLinkProps = { - linkTarget?: string; - linkDestination?: string; - linkClass?: string; - href: string; -}; - -export function NextLink(props: React.PropsWithChildren) { - const { linkDestination, linkClass, href, linkTarget, children } = props; - const target = linkTarget ? '_blank' : undefined; - - // TODO: Determine what linkDestination property represents and if it is needed here. - return ( - - {children} - - ); -}