BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

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

Kinetic Text Reveal

componentry/kinetic-text-reveal
RemovedComponent

Directional text reveal with soft blur and configurable word, character, or line stagger timing.

Live preview

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

Install it

npx shadcn@latest add https://componentry.dev/r/kinetic-text-reveal.json

Source

components/ui/kinetic-text-reveal.tsxcomponentry.dev/r/kinetic-text-reveal.json · first 6 KB
1"use client";
2
3import { cn } from "@/lib/utils";
4import {
5 motion,
6 useReducedMotion,
7 type Transition,
8 type Variants,
9} from "framer-motion";
10import {
11 forwardRef,
12 useEffect,
13 useImperativeHandle,
14 useMemo,
15 useState,
16 type HTMLAttributes,
17} from "react";
18
19type SplitMode = "words" | "characters" | "lines";
20type RevealDirection = "up" | "down" | "left" | "right";
21type StaggerOrigin = "start" | "end" | "center" | "edges" | "random" | number;
22
23export interface KineticTextRevealRef {
24 /** Starts or replays the reveal animation. */
25 play: () => void;
26 /** Moves the text back to its hidden state. */
27 reset: () => void;
28}
29
30interface KineticTextRevealProps extends Omit<
31 HTMLAttributes<HTMLSpanElement>,
32 "children"
33> {
34 /** Text content to reveal. */
35 text: string;
36 /** Additional CSS classes for the outer element. */
37 className?: string;
38 /** CSS classes applied to each animated text segment. */
39 segmentClassName?: string;
40 /** CSS classes applied to each clipping wrapper. */
41 maskClassName?: string;
42 /** How the text is segmented before animation. */
43 splitBy?: SplitMode;
44 /** Direction each segment travels from. */
45 direction?: RevealDirection;
46 /** Distance each segment travels in pixels. */
47 distance?: number;
48 /** Delay between animated segments in seconds. */
49 stagger?: number;
50 /** Where the stagger wave begins. */
51 staggerFrom?: StaggerOrigin;
52 /** Animation transition for each segment. */
53 transition?: Transition;
54 /** Adds blur while segments are hidden. */
55 blur?: boolean;
56 /** Starts automatically after mount. */
57 autoPlay?: boolean;
58 /** Optional delay before the automatic reveal begins, in seconds. */
59 delay?: number;
60 /** Called when the reveal begins. */
61 onRevealStart?: () => void;
62 /** Called after the last segment completes. */
63 onRevealComplete?: () => void;
64}
65
66interface Segment {
67 value: string;
68 animated: boolean;
69 index: number;
70}
71
72function splitIntoGraphemes(value: string): string[] {
73 if (typeof Intl !== "undefined" && "Segmenter" in Intl) {
74 const segmenter = new Intl.Segmenter("en", { granularity: "grapheme" });
75 return Array.from(segmenter.segment(value), ({ segment }) => segment);
76 }
77
78 return Array.from(value);
79}
80
81function getSegments(text: string, splitBy: SplitMode): Segment[] {
82 let animatedIndex = 0;
83
84 if (splitBy === "lines") {
85 return text.split("\n").map((line) => {
86 const animated = line.length > 0;
87 return {
88 value: line,
89 animated,
90// … truncated

Facts

Registry
componentry
Type
registry:ui
Access
Free
Files written
0
Licence
MIT
In the index
at or before 2026-08-10
Last confirmed
3 days ago

Go to the source

Docs on componentry componentry.fun Bharath200415/KylixUI on GitHub Raw registry item This item as JSON

More from componentry

All 35 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
animated-gradientanimated-gradientcomponentryComponentsUnverifiedno deps
auth-modalauth-modalcomponentryComponentsUnverifiedno deps
border-beamborder-beamcomponentryComponentsUnverifiedno deps
circuit-boardcircuit-boardcomponentryComponentsUnverifiedno deps
closing-plasmaclosing-plasmacomponentryComponentsUnverifiedno deps
collection-surfercollection-surfercomponentryComponentsUnverifiedno deps
command-menucommand-menucomponentryComponentsUnverifiedno deps
cursor-driven-particle-typographycursor-driven-particle-typographycomponentryComponentsUnverifiedno deps

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