carbon-components-svelte/src/ListBox/ListBoxMenu.svelte
2020-07-25 06:26:49 -07:00

17 lines
290 B
Svelte

<script>
/**
* Set an id for the top-level element
* @type {string} [id]
*/
export let id = "ccs-" + Math.random().toString(36);
$: menuId = `menu-${id}`;
</script>
<div
role="listbox"
id={menuId}
class:bx--list-box__menu={true}
{...$$restProps}>
<slot />
</div>