feat: add style to markdown link

This commit is contained in:
RadoslavDimchev 2023-10-26 08:49:56 +03:00
parent 4dfff15c89
commit ecd0cc2653

View File

@ -2,7 +2,11 @@ import { Link } from 'react-router-dom'
const MarkdownLink = (props: any) => { const MarkdownLink = (props: any) => {
return ( return (
<Link to={props.href} target="_blank"> <Link
to={props.href}
target="_blank"
style={{ color: '#647084', textDecoration: 'underline' }}
>
{props.children} {props.children}
</Link> </Link>
) )