()
| 4 | import { motion } from 'framer-motion' |
| 5 | |
| 6 | const RippleWaveLoader = () => { |
| 7 | return ( |
| 8 | <div className="flex items-center justify-center space-x-1"> |
| 9 | {[...Array(7)].map((_, index) => ( |
| 10 | <motion.div |
| 11 | key={index} |
| 12 | className="h-8 w-2 rounded-full bg-red-500" |
| 13 | animate={{ |
| 14 | scaleY: [0.5, 1.5, 0.5], |
| 15 | scaleX: [1, 0.8, 1], |
| 16 | translateY: ['0%', '-15%', '0%'], |
| 17 | }} |
| 18 | transition={{ |
| 19 | duration: 1, |
| 20 | repeat: Infinity, |
| 21 | ease: 'easeInOut', |
| 22 | delay: index * 0.1, |
| 23 | }} |
| 24 | /> |
| 25 | ))} |
| 26 | </div> |
| 27 | ) |
| 28 | } |
| 29 | |
| 30 | export default RippleWaveLoader |
nothing calls this directly
no outgoing calls
no test coverage detected