carbon-components-svelte/src/ListBox/ListBoxMenu.svelte
2024-11-11 21:35:48 -08:00

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>