Components
Loading preview...
A Tooltip from the Flexnative UI registry with 10 variants: basic hover, four-side positioning, keyboard shortcut hint, icon-button trigger, custom open delay, rich multi-line content, light-on-dark theming, colored variants, arrow-less, and adjustable side offset. Built on Radix Tooltip.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/flexnative-tooltip'use client'
import { TooltipProvider } from '@/components/ui/flexnative-tooltip'
import { Button } from '@/components/ui/button'
import {
Tooltip,
TooltipContent,
TooltipTrigger,
} from '@/components/ui/flexnative-tooltip'
// Trick: applying the `dark` class to TooltipContent flips its local CSS
// variables to the dark-scheme values, so `bg-foreground` (default tooltip
// background) resolves to a light color — and the arrow follows automatically
// because it also reads `--foreground`. In dark mode this is a no-op.
export function Tooltip07() {
return (
<Tooltip>
<TooltipTrigger asChild>
<Button variant="outline">Hover me</Button>
</TooltipTrigger>
<TooltipContent className="dark">Light tooltip via dark class</TooltipContent>
</Tooltip>
)
}
export default function Default() {
return (
<TooltipProvider>
<div className="flex min-h-screen w-full items-center justify-center bg-background p-10">
<Tooltip07 />
</div>
</TooltipProvider>
)
}