mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
19 lines
305 B
Svelte
19 lines
305 B
Svelte
<script>
|
|
/**
|
|
* Set an id to be used by the label element
|
|
* @type {string} [id]
|
|
*/
|
|
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>
|