import { LinkExternalIcon } from '@primer/octicons-react' import { cn } from '~/utils/cn' /* eslint-disable unicorn/no-keyword-prefix */ type Properties = { readonly to: string; readonly name: string; readonly children: string; readonly className?: string; } export default function Link({ to, name: alt, children, className }: Properties) { return ( {children} ) }