mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
19 lines
315 B
Svelte
19 lines
315 B
Svelte
<script>
|
|
/**
|
|
* Set to `true` to use the nested variant
|
|
* @type {boolean} [nested=false]
|
|
*/
|
|
export let nested = false;
|
|
</script>
|
|
|
|
<ul
|
|
class:bx--list--unordered="{true}"
|
|
class:bx--list--nested="{nested}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
</ul>
|