1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 15:09:07 +00:00
conky/web/components/CustomLink.tsx

22 lines
307 B
TypeScript
Raw Normal View History

import Link from 'next/link'
import { Url } from 'url'
interface CustomLinkProps {
as: Url
href: Url
}
export default function CustomLink({
as,
href,
...otherProps
}: CustomLinkProps) {
return (
<>
<Link as={as} href={href}>
<a {...otherProps} />
</Link>
</>
)
}