Tooltip
Tooltip can be used for a little info hint on hover or focus.
View SourceUsage
css
@import "winduum/src/components/tooltip.css" layer(components);
html
<div class="c-tooltip bottom" aria-label="I am tooltip">
<button class="ui-btn">Tooltip</button>
</div>
vue
<script setup>
import { Tooltip } from '@/components/tooltip'
import { UiBtn } from '@/components/ui/btn'
</script>
<template>
<Tooltip aria-label="I am a tooltip!">
<UiBtn>Tooltip</UiBtn>
</Tooltip>
</template>
Variants
Tokens
top
bottom
left
right
Installation
Follow instructions for individual framework usage below
Examples
Basic
html
<div class="c-tooltip bottom" aria-label="I am tooltip">
<button class="ui-btn">Tooltip</button>
</div>