mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
18 lines
336 B
Svelte
18 lines
336 B
Svelte
<script>
|
|
/** Set an id for the top-level element */
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
|
|
/** Obtain a reference to the HTML element */
|
|
export let ref = null;
|
|
</script>
|
|
|
|
<div
|
|
bind:this={ref}
|
|
role="listbox"
|
|
id="menu-{id}"
|
|
class:bx--list-box__menu={true}
|
|
{...$$restProps}
|
|
on:scroll
|
|
>
|
|
<slot />
|
|
</div>
|