import clsx from 'clsx/lite'; import Link from 'next/link'; import { ComponentProps } from 'react'; import { FiExternalLink } from 'react-icons/fi'; export default function AdminLink({ href, className, children, externalIcon, ...props }: ComponentProps & { externalIcon?: boolean }) { return ( <> {children} {externalIcon &&   } ); }