Command Palette

Search for a command to run...

Loading component...

Components Pro Vertical tooltip menu

Vertical tooltip menu

A vertical tooltip menu with smooth clip-path animations that reveal tooltips on hover, featuring spring-based positioning and elegant transitions

Dependencies

Interaction Type

Hover icons to see tooltips
Watch clip-path animations

CLI UNAVAILABLE

pro component, try copying the source code from top right corner

How to use

import {
  Skiper98,
  VtooltipRoot,
  VtooltipItem,
  VtooltipTrigger,
  VtooltipContent,
} from "@/components/v1/skiper98";

const DemoSkiper98 = () => {
  const items = [
    {
      icon: <MessageCircle className="h-full w-full" />,
      label: "Comment",
      labelHasKeyword: ["C"],
      hasBadge: false,
    },
  ];

  return (
    <VtooltipRoot side="left">
      {items.map((item, index) => (
        <VtooltipItem key={index} index={index}>
          <VtooltipTrigger>
            <div className="group relative flex size-8 items-center justify-center rounded-full p-1.5 hover:bg-white/15">
              {item.icon}
            </div>
          </VtooltipTrigger>
          <VtooltipContent>
            <div className="flex items-center justify-center gap-2 px-2 text-sm">
              {item.label}
            </div>
          </VtooltipContent>
        </VtooltipItem>
      ))}
    </VtooltipRoot>
  );
};
Props
Description

side

Tooltip position

springConfig

Spring animation config

Attribution

Inspired by and adapted from Vercel

Source code

Click on the top right
to view the source code

Keep in mind

Most components here are recreations of the best out there. I don't claim to be the original creator. This is my attempt to reverse-engineer, replicate, and often add a few extra features. I've tried to credit everyone, but if I missed something, let me know.

Contact

Additionlly, if you find any bug or issue, feel free to
Drop a dm.

License & Usage:

  • Free to use and modify in both personal and commercial projects.
  • Attribution to Skiper UI is required when using the free version.
  • No attribution required with Skiper UI Pro.
Vertical tooltip menu | Skiper UI | Skiper UI