@ta-interaktiv/react-link-in-text
v0.0.4
Published
A styled anchor tag for a link in text
Readme
@ta-interaktiv/react-link-in-text
A styled anchor tag that mimics the look of the one from DISCO
Properties:
$isExternal(boolean, optional): external Links are styled with an arrow as suffix.
Usage example
import StyledLink from "@ta-interaktiv/react-link-in-text";
const MyReactComponent = () =>
<div>
Some text and a styled <StyledLink href="/realtiveLinkToArticle">internallink</StyledLink>.
Some text and a styled <StyledLink href="https://someOtherSite.com/" $isExternal>externallink</StyledLink>.
</div>