({ text }: { text: string })
| 4 | import DropCharacters from './DropCharacters' |
| 5 | |
| 6 | const 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 | |
| 27 | export default TextDrop |
nothing calls this directly
no outgoing calls
no test coverage detected