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