Skip to content

Commit

Permalink
I don't know why. Just move on.
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Sep 12, 2023
1 parent 3b909a2 commit f11e4f5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/js/components/reusable/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ const Button = (props: React.HTMLProps<HTMLAnchorElement>) => (
itemScope={props.itemScope}
itemType={props.itemType}
itemProp={props.itemProp}
target={props.target}
onClick={props.onClick}
>
{props.children}
</a>
Expand All @@ -31,6 +33,8 @@ const Paragraph = (props: React.HTMLProps<HTMLAnchorElement>) => (
itemScope={props.itemScope}
itemType={props.itemType}
itemProp={props.itemProp}
target={props.target}
onClick={props.onClick}
>
{props.children}
</a>
Expand All @@ -43,6 +47,8 @@ const IconLink = (props: React.HTMLProps<HTMLAnchorElement>) => (
itemScope={props.itemScope}
itemType={props.itemType}
itemProp={props.itemProp}
target={props.target}
onClick={props.onClick}
>
{props.children}
</a>
Expand Down

0 comments on commit f11e4f5

Please sign in to comment.