mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
18 lines
418 B
Svelte
18 lines
418 B
Svelte
<script>
|
|
export let id = undefined;
|
|
export let active = false;
|
|
export let highlighted = false;
|
|
|
|
import { cx } from '../../lib';
|
|
</script>
|
|
|
|
<div
|
|
on:click
|
|
on:mouseenter
|
|
on:mouseleave
|
|
class={cx('--list-box__menu-item', active && '--list-box__menu-item--active', highlighted && '--list-box__menu-item--highlighted')}
|
|
{id}>
|
|
<div class={cx('--list-box__menu-item__option')}>
|
|
<slot />
|
|
</div>
|
|
</div>
|