12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import { Link as Comp, type LinkProps } from '@tanstack/react-router';
|
|
import React from 'react';
|
|
|
|
const Link = (props: LinkProps) => (
|
|
<Comp
|
|
{...props}
|
|
className='text-primary-600 hover:underline dark:text-primary-400'
|
|
/>
|
|
);
|
|
|
|
export { Link as default };
|