MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / TextDrop

Function TextDrop

src/showcase/components/text/text-drop/TextDrop.tsx:6–25  ·  view source on GitHub ↗
({ text }: { text: string })

Source from the content-addressed store, hash-verified

4import DropCharacters from './DropCharacters'
5
6const TextDrop = ({ text }: { text: string }) => {
7 const container = {
8 visible: {
9 transition: {
10 staggerChildren: 0.025,
11 },
12 },
13 }
14
15 return (
16 <motion.div initial="hidden" animate="visible" variants={container}>
17 <div>
18 <DropCharacters
19 text={text}
20 className="text-3xl font-semibold tracking-tight text-red-500"
21 />
22 </div>
23 </motion.div>
24 )
25}
26
27export default TextDrop

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected