mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
16 lines
272 B
Svelte
16 lines
272 B
Svelte
<script>
|
|
/** Set an id to be used by the label element */
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
</script>
|
|
|
|
<label
|
|
class:bx--label="{true}"
|
|
for="{id}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
</label>
|