mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
17 lines
290 B
Svelte
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>
|