BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/SmoothUI Registry/bottom-up-letters

Bottom Up Letters

smoothui-registry/bottom-up-letters
FreeComponent

A BottomUpLetters text animation component for SmoothUI.

Install it

npx shadcn@latest add https://www.smoothui.dev/r/bottom-up-letters.json

Source

index.tsxwww.smoothui.dev/r/bottom-up-letters.json
1"use client";
2
3import { motion, useInView, useReducedMotion } from "motion/react";
4import { useRef } from "react";
5
6export interface BottomUpLettersProps {
7 children: string;
8 className?: string;
9 /** Delay before the animation starts, in milliseconds. */
10 delay?: number;
11 /** Per-character stagger, in milliseconds. */
12 stagger?: number;
13 /** Animate only once the text scrolls into view. */
14 triggerOnView?: boolean;
15}
16
17const DURATION_S = 0.4;
18const MS = 1000;
19// Pronounced ease-out for a tall, staged lift from below.
20const EASE = [0.18, 1, 0.32, 1] as const;
21
22/**
23 * BottomUpLetters — letters rise from below in a pronounced staircase,
24 * one symbol at a time, with zero blur. Best for short single words or
25 * compact headlines at 40px+. From the animate-text catalog (`bottom-up-letters`).
26 */
27export default function BottomUpLetters({
28 children,
29 className = "",
30 delay = 0,
31 stagger = 88,
32 triggerOnView = false,
33}: BottomUpLettersProps) {
34 const ref = useRef<HTMLSpanElement>(null);
35 const inView = useInView(ref, { once: true });
36 const shouldReduceMotion = useReducedMotion();
37 const play = (!triggerOnView || inView) && !shouldReduceMotion;
38 const characters = Array.from(children);
39
40 return (
41 <span aria-label={children} className={className} ref={ref}>
42 {characters.map((char, index) => (
43 <motion.span
44 animate={play ? { opacity: 1, y: 0 } : undefined}
45 aria-hidden="true"
46 initial={shouldReduceMotion ? { opacity: 1 } : { opacity: 0, y: 46 }}
47 // biome-ignore lint/suspicious/noArrayIndexKey: characters have no stable id
48 key={index}
49 style={{ display: "inline-block", whiteSpace: "pre" }}
50 transition={
51 shouldReduceMotion
52 ? { duration: 0 }
53 : {
54 delay: delay / MS + (index * stagger) / MS,
55 duration: DURATION_S,
56 ease: EASE,
57 }
58 }
59 >
60 {char === " " ? " " : String(char)}
61 </motion.span>
62 ))}
63 </span>
64 );
65}

What it pulls in

npm packages

  • motion

Files it writes

  • index.tsx

Facts

Registry
SmoothUI Registry
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-12
Last confirmed
today

Go to the source

www.smoothui.dev educlopez/smoothui on GitHub Raw registry item This item as JSON

More from SmoothUI Registry

All 178 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Agent Avataragent-avatarSmoothUI RegistryComponentsFreeno deps
Ai Approvalai-approvalSmoothUI RegistryComponentsFree2 deps
Ai Artifactai-artifactSmoothUI RegistryComponentsFree2 deps
Ai Branchai-branchSmoothUI RegistryComponentsFree2 deps
Ai Citationai-citationSmoothUI RegistryComponentsFree2 deps
Ai Context Meterai-context-meterSmoothUI RegistryComponentsFree2 deps
Ai Conversationai-conversationSmoothUI RegistryComponentsFree2 deps
Ai Coreai-coreSmoothUI RegistryComponentsFree1 dep

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