bigbuffet-rw/app/soapbox/components/link.tsx

11 lines
248 B
TypeScript
Raw Normal View History

2022-09-30 07:22:55 -07:00
import React from 'react';
import { Link as Comp, LinkProps } from 'react-router-dom';
const Link = (props: LinkProps) => (
<Comp
{...props}
2023-02-01 14:13:42 -08:00
className='text-primary-600 hover:underline dark:text-accent-blue'
2022-09-30 07:22:55 -07:00
/>
);
export default Link;