All checks were successful
Build and deploy website / build (push) Successful in 33s
19 lines
314 B
Plaintext
19 lines
314 B
Plaintext
---
|
|
import type { LinkProps } from "@/types/props"
|
|
interface Props extends LinkProps {
|
|
noStyle?: boolean
|
|
}
|
|
|
|
const { href, noStyle = false, class: clazz, ...props } = Astro.props
|
|
---
|
|
|
|
<a
|
|
href={href}
|
|
target="_blank"
|
|
rel="noopener"
|
|
class:list={[noStyle ? "" : "link", clazz]}
|
|
{...props}
|
|
>
|
|
<slot />
|
|
</a>
|