Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 880 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 880 Bytes

Version License

A robust, unstyled popover component for Svelte with a customizable smooth/sharp caret.

Docs/playground

https://svelte-smooth-popover.jrmy.dev

Installation

npm i svelte-smooth-popover

Usage

<script>
	import { Popover } from 'svelte-smooth-popover';
</script>

<button>
	Example
	<Popover>
		<div class="shadow-sm bg-white">Popover content</div>
	</Popover>
</button>