mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
18 lines
314 B
Svelte
18 lines
314 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>
|