@ -1,7 +1,7 @@
|
||||
import { Link as Comp, type LinkProps } from '@tanstack/react-router';
|
||||
import React from 'react';
|
||||
|
||||
const Link = (props: LinkProps) => (
|
||||
const Link = (props: LinkProps & React.HTMLAttributes<HTMLAnchorElement>) => (
|
||||
<Comp {...props} className='text-primary-600 hover:underline dark:text-primary-400' />
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user