8 lines
246 B
Svelte
8 lines
246 B
Svelte
<div class="dropdown dropdown-hover dropdown-bottom">
|
|
<div role="button" tabindex="0">
|
|
<slot></slot>
|
|
</div>
|
|
<div class="dropdown-content bg-gray-700 text-white z-10 menu w-max shadow rounded-lg">
|
|
<slot name="tooltip"></slot>
|
|
</div>
|
|
</div> |