BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/motion-primitives/transition-panel
This component no longer exists. It was in motion-primitives’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.

Transition Panel

motion-primitives/transition-panel
RemovedComponent

A panel component with smooth transitions between different states.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/ibelick/motion-primitives/HEAD/public/c/transition-panel.json

Source

transition-panel.tsxraw.githubusercontent.com/ibelick/motion-primitives/HEAD/public/c/transition-panel.json
1'use client';
2import {
3 AnimatePresence,
4 Transition,
5 Variant,
6 motion,
7 MotionProps,
8} from 'motion/react';
9import { cn } from '@/lib/utils';
10
11export type TransitionPanelProps = {
12 children: React.ReactNode[];
13 className?: string;
14 transition?: Transition;
15 activeIndex: number;
16 variants?: { enter: Variant; center: Variant; exit: Variant };
17} & MotionProps;
18
19export function TransitionPanel({
20 children,
21 className,
22 transition,
23 variants,
24 activeIndex,
25 ...motionProps
26}: TransitionPanelProps) {
27 return (
28 <div className={cn('relative', className)}>
29 <AnimatePresence
30 initial={false}
31 mode='popLayout'
32 custom={motionProps.custom}
33 >
34 <motion.div
35 key={activeIndex}
36 variants={variants}
37 transition={transition}
38 initial='enter'
39 animate='center'
40 exit='exit'
41 {...motionProps}
42 >
43 {children[activeIndex]}
44 </motion.div>
45 </AnimatePresence>
46 </div>
47 );
48}

What it pulls in

npm packages

  • motion

Files it writes

  • components/core/transition-panel.tsx

Facts

Registry
motion-primitives
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-01
Last confirmed
13 days ago

Go to the source

motion-primitives.com ibelick/motion-primitives 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

KitGrade

SaaS starter kits, scored from measured facts

kitgrade.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 KitGrade

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 KitGrade

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 KitGrade

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