mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 19:01:05 +00:00
18 lines
288 B
Svelte
18 lines
288 B
Svelte
<script>
|
|
/** @extends {"./Link.svelte"} LinkProps */
|
|
|
|
import Link from "./Link.svelte";
|
|
import Launch from "../icons/Launch.svelte";
|
|
</script>
|
|
|
|
<Link
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
target="_blank"
|
|
icon={Launch}
|
|
>
|
|
<slot />
|
|
</Link>
|