mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
16 lines
271 B
Svelte
16 lines
271 B
Svelte
<script>
|
|
/** Set to `true` to use the nested variant */
|
|
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>
|