svelte-pops
Modal Props
Tooltip in Modals

tooltip Snippet.

tooltipProps TooltipProps.

It's best to use tooltips within modals, as the modal will make sure that the tooltip is not opened when the modal is. Instead of using the initTooltip action or using the Tooltip component in an anchor, simply pass a tooltip snippet to the Modal along with the tooltipProps to make it work.

svelte
<script>
    import Modal from 'svelte-pops';
</script>

<button>
    My Button
    <Modal tooltipProps={{ class: 'bg-cyan-100 text-cyan-600' }}>
		Modal content
		{#snippet tooltip()}
			My tooltip content
		{/snippet}
    </Modal>
</button>