mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
🐛 Fix links not linking properly
This commit is contained in:
parent
798982aa80
commit
8917680c68
1 changed files with 1 additions and 1 deletions
|
@ -38,6 +38,6 @@ export function Anchor({displayStyle, href, ...props}: AnchorProps): JSX.Element
|
|||
props.bluelibClassNames = mergeClassNames(props.bluelibClassNames, "anchor", DISPLAY_STYLE_CLASSES[displayStyle])
|
||||
|
||||
return (
|
||||
<BaseElement kind={"a"} {...props}/>
|
||||
<BaseElement kind={"a"} href={href} {...props}/>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue