/* * Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors. * SPDX-License-Identifier: GPL-2.0-or-later */ type ExternalLinkProps = { href: string; className?: string; children?: React.ReactNode; }; export const ExternalLink = ({ href, className, children }: ExternalLinkProps) => ( {children} ); export const DocsLink = ({ href }: { href: string; }) => ( {href} );