blob: 1068872198a6728aafed3da1d6aa530da4ff57ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
export interface Props {
href?: string;
}
const { href } = Astro.props;
---
{
href ? (
<a href={href} rel="noopener noreferrer" target="_blank">
<slot />
</a>
) : (
<><slot /></>
)
}
|