BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/blaze-motion/radial-stagger
This component no longer exists. It was in blaze-motion’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 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.

Radial Stagger

blaze-motion/radial-stagger
RemovedComponent

Radial stagger — grid tiles spring in, ordered by their distance from a center point.

Install it

npx shadcn@latest add https://motion.asmitsah.dev/r/radial-stagger.json

Source

components/motion/radial-stagger.tsxmotion.asmitsah.dev/r/radial-stagger.json
1"use client";
2
3import type { Variants } from "motion/react";
4import { useAnimationControls } from "motion/react";
5import * as m from "motion/react-m";
6import type { CSSProperties, ReactNode } from "react";
7import { Children, useEffect, useState } from "react";
8import { feel, springPop, springPopTransition } from "@/lib/motion";
9import { cn } from "@/lib/utils";
10
11type DistanceMetric = "euclidean" | "manhattan" | "chebyshev";
12
13type RadialStaggerProps = {
14 children: ReactNode;
15 className?: string;
16 style?: CSSProperties;
17 /** classes for each tile (the grid cell) */
18 itemClassName?: string;
19 /** grid columns — drives both the layout and the distance geometry */
20 columns?: number;
21 /** seconds of delay added per unit of distance from the clicked origin */
22 step?: number;
23 /** how ring distance is measured from the origin cell */
24 distance?: DistanceMetric;
25 /** index the first cascade ripples out from (before any click) */
26 defaultOrigin?: number;
27 /**
28 * Opt into real interactive controls — each tile renders as a focusable
29 * `<button>`. Requires an accessible name per tile (see `getItemLabel`),
30 * otherwise you ship nameless buttons (WCAG 4.1.2). Leave off (default) for
31 * a decorative ripple grid: tiles render as non-focusable `role="presentation"`
32 * elements, so keyboard/SR users never hit empty controls.
33 */
34 interactive?: boolean;
35 /** Accessible name for the tile at `index` — required when `interactive`. */
36 getItemLabel?: (index: number) => string;
37 /** Fires with the tile index when an interactive tile is selected. */
38 onSelect?: (index: number) => void;
39};
40
41const radialItem: Variants = {
42 hidden: springPop.initial,
43 visible: (delay: number) => ({
44 ...springPop.animate,
45 transition: { ...springPopTransition, delay },
46 }),
47};
48
49function ringDistance(a: number, b: number, columns: number, metric: DistanceMetric) {
50 const cols = Math.max(1, columns);
51 const dr = Math.abs(Math.floor(a / cols) - Math.floor(b / cols));
52 const dc = Math.abs((a % cols) - (b % cols));
53 if (metric === "manhattan") return dr + dc;
54 if (metric === "chebyshev") return Math.max(dr, dc);
55 return Math.hypot(dr, dc);
56}
57
58// FLAT export (never a compound `RadialStagger.Item` — bolted-on props are
59// stripped across the RSC client boundary and crash a Server Component at build).
60export function RadialStagger({
61 children,
62 className,
63 style,
64 itemClassName,
65 columns = 4,
66 step = feel.stagger,
67 distance = "euclidean",
68// … truncated

What it pulls in

npm packages

  • motion

Other registry items

  • https://motion.asmitsah.dev/r/provider.json

Files it writes

  • components/motion/radial-stagger.tsx

Facts

Registry
blaze-motion
Type
registry:component
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-02
Last confirmed
13 days ago

Go to the source

motion.asmitsah.dev blaze-000/blaze-motion 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