mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
85 lines
1.9 KiB
Svelte
85 lines
1.9 KiB
Svelte
<script>
|
|
/** @restProps {a | p} */
|
|
|
|
/**
|
|
* Specify the size of the link
|
|
* @type {"sm" | "lg"}
|
|
*/
|
|
export let size = undefined;
|
|
|
|
/**
|
|
* Specify the href value
|
|
* @type {string}
|
|
*/
|
|
export let href = undefined;
|
|
|
|
/** Set to `true` to use the inline variant */
|
|
export let inline = false;
|
|
|
|
/**
|
|
* Specify the icon to render
|
|
* `inline` must be `false`
|
|
* @type {typeof import("svelte").SvelteComponent}
|
|
*/
|
|
export let icon = undefined;
|
|
|
|
/** Set to `true` to disable the checkbox */
|
|
export let disabled = false;
|
|
|
|
/** Set to `true` to allow visited styles */
|
|
export let visited = false;
|
|
|
|
/** Obtain a reference to the top-level HTML element */
|
|
export let ref = null;
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
{#if disabled}
|
|
<p
|
|
bind:this="{ref}"
|
|
class:bx--link="{true}"
|
|
class:bx--link--disabled="{disabled}"
|
|
class:bx--link--inline="{inline}"
|
|
class:bx--link--visited="{visited}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
{#if !inline && ($$slots.icon || icon)}
|
|
<div class:bx--link__icon="{true}">
|
|
<slot name="icon">
|
|
<svelte:component this="{icon}" />
|
|
</slot>
|
|
</div>
|
|
{/if}
|
|
</p>
|
|
{:else}
|
|
<a
|
|
bind:this="{ref}"
|
|
class:bx--link="{true}"
|
|
class:bx--link--disabled="{disabled}"
|
|
class:bx--link--inline="{inline}"
|
|
class:bx--link--visited="{visited}"
|
|
class:bx--link--sm="{size === 'sm'}"
|
|
class:bx--link--lg="{size === 'lg'}"
|
|
rel="{$$restProps.target === '_blank' ? 'noopener noreferrer' : undefined}"
|
|
href="{href}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
{#if !inline && ($$slots.icon || icon)}
|
|
<div class:bx--link__icon="{true}">
|
|
<slot name="icon">
|
|
<svelte:component this="{icon}" />
|
|
</slot>
|
|
</div>
|
|
{/if}
|
|
</a>
|
|
{/if}
|