import { LinkExternalIcon } from '@primer/octicons-react' import { cn } from '~/utils/cn' interface Props { to: string name: string children: string className?: string } export default function Link({ to, name: alt, children, className }: Props) { return ( {children} ) }