BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/ruixen-ui/avatar-quick-actions
This component no longer exists. It was in ruixen-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-12 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.

Avatar Quick Actions

ruixen-ui/avatar-quick-actions
RemovedComponent

An orbital action ring that blooms outward from the avatar with staggered spring emergence — hover any action and the rest dim, drawing the eye.

Live preview

live · rendered by the registry
Rendered by ruixen-ui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://ruixen.com/r/avatar-quick-actions.json

Source

registry/ruixenui/avatar-quick-actions.tsxruixen.com/r/avatar-quick-actions.json
1"use client";
2
3import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
4import { cn } from "@/lib/utils";
5import { AnimatePresence, motion } from "motion/react";
6import { type ReactNode, useState } from "react";
7
8/* ═══════════════════════════════════════════════════════════
9 Orbital Bloom — actions live behind the avatar. Hover and
10 they spring outward radially with staggered timing, settling
11 into orbit positions. Focus any action and the rest dim,
12 drawing the eye. The avatar contracts to signal the release.
13 No tooltip, no portal — same spatial plane.
14 ═══════════════════════════════════════════════════════════ */
15
16interface AvatarQuickActionsItem {
17 icon: ReactNode;
18 label: string;
19 onClick?: () => void;
20}
21
22interface AvatarQuickActionsProps {
23 items: AvatarQuickActionsItem[];
24 avatarSrc?: string;
25 avatarFallback?: string;
26 size?: number;
27 className?: string;
28}
29
30export default function AvatarQuickActions({
31 items,
32 avatarSrc,
33 avatarFallback,
34 size = 44,
35 className,
36}: AvatarQuickActionsProps) {
37 const [open, setOpen] = useState(false);
38 const [activeIdx, setActiveIdx] = useState<number | null>(null);
39
40 const actionSize = Math.round(size * 0.7);
41 const orbit = Math.round(size * 0.95);
42 const container = orbit * 2 + actionSize;
43
44 const step = (2 * Math.PI) / items.length;
45 const start = -Math.PI / 2;
46
47 return (
48 <div
49 className={cn("relative", className)}
50 style={{ width: container, height: container }}
51 onMouseLeave={() => {
52 setOpen(false);
53 setActiveIdx(null);
54 }}
55 >
56 {/* orbit ring */}
57 <motion.div
58 className="pointer-events-none absolute left-1/2 top-1/2 rounded-full border border-border/30"
59 style={{
60 width: orbit * 2,
61 height: orbit * 2,
62 x: "-50%",
63 y: "-50%",
64 }}
65 animate={{
66 opacity: open ? 1 : 0,
67 scale: open ? 1 : 0.5,
68 }}
69 transition={{ type: "spring", stiffness: 300, damping: 25 }}
70 />
71
72 {/* avatar */}
73 <motion.div
74 className="absolute left-1/2 top-1/2 z-20 cursor-pointer"
75 style={{ width: size, height: size, x: "-50%", y: "-50%" }}
76 animate={{ scale: open ? 0.92 : 1 }}
77// … truncated

What it pulls in

npm packages

  • motion

Other registry items

  • avatar

Files it writes

  • registry/ruixenui/avatar-quick-actions.tsx

Facts

Registry
ruixen-ui
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-07
Last confirmed
7 days ago

Go to the source

Docs on ruixen-ui ruixen.com ruixenui/ruixen.com on GitHub Raw registry item This item as JSON

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex