repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | "use client" |
| #2 | |
| #3 | import * as React from "react" |
| #4 | import * as HoverCardPrimitive from "@radix-ui/react-hover-card" |
| #5 | |
| #6 | import { cn } from "@/lib/utils" |
| #7 | |
| #8 | const HoverCard = HoverCardPrimitive.Root |
| #9 | |
| #10 | const HoverCardTrigger = HoverCardPrimitive.Trigger |
| #11 | |
| #12 | const HoverCardContent = React.forwardRef< |
| #13 | React.ElementRef<typeof HoverCardPrimitive.Content>, |
| #14 | React.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content> |
| #15 | >(({ className, align = "center", sideOffset = 4, ...props }, ref) => ( |
| #16 | <HoverCardPrimitive.Content |
| #17 | ref={ref} |
| #18 | align={align} |
| #19 | sideOffset={sideOffset} |
| #20 | className={cn( |
| #21 | "z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2", |
| #22 | className |
| #23 | )} |
| #24 | {...props} |
| #25 | /> |
| #26 | )) |
| #27 | HoverCardContent.displayName = HoverCardPrimitive.Content.displayName |
| #28 | |
| #29 | export { HoverCard, HoverCardTrigger, HoverCardContent } |
| #30 |