# svelte-hint > ⚠️ This is beta software and still not ready to use Svelte library for tooltips internally powered by the awesome [Fluent UI](https://floating-ui.com/) with sensible default values. Check out the **[demo](https://svelte-hint.pages.dev/)** to see it in action. ![Screenshot](.github/screen.png) ## 🌈 Features - Automatic positioning & overflow handling on screen edges. - Fully typed. - Sensible default values. - Use text or custom html/components as tooltips. ## 📀 Installation ```bash npm install svelte-hint ``` ## ⌨️ Usage ### With text ```svelte ``` ### With custom html / components ```svelte Some custom html ``` ## 🏗 Setup Floating UI needs some additional setup. Below are a few examples (which are shamefully copied from the [carbon team](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/svelte#set-up)). - [SvelteKit](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#sveltekit) - [Vite](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#vite) - [Sapper](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#sapper) - [Rollup](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#rollup) - [Webpack](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#webpack) - [Snowpack](https://github.com/cupcakearmy/svelte-hint/blob/main/SETUP.md#snowpack) ## 🗂 Docs ### Props | Prop | Type | Default | Description | | ----------- | ----------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------------------- | | `text` | `string` | `''` | Text to be used as the tooltip. If empty the slot will be used. | | `placement` | `Placement` | `auto` | See the [Fluent UI docs](https://floating-ui.com/docs/computePosition#placement). | | `boundary` | `HTMLElement \| string` | `'clippingAncestors'` | See the [Fluent UI docs](https://floating-ui.com/docs/detectOverflow#boundary). | | `offset` | `Options` | `4` | See the [Fluent UI docs](https://floating-ui.com/docs/offset#options). | | `auto` | `boolean \| 'start' \| 'end'` | `false` | Use the [`autoPlacement`](https://floating-ui.com/docs/autoPlacement) middleware. If set `placement` will be ignored. | ### Slots #### `hint` > Only works if the `text` props is empty. Otherwise the slot is ignored. If you don't want to use the pre-styled tooltip you are free to use whatever html / svelte code you'd like as the tooltip. ```svelte
Hover me
Some custom html
```