| 2 | import { motion } from "framer-motion"; |
| 3 | |
| 4 | export interface LoadingState { |
| 5 | id: string; |
| 6 | text: string; |
| 7 | status: 'pending' | 'loading' | 'completed'; |
| 8 | } |
| 9 | |
| 10 | interface MultiStepLoaderProps { |
| 11 | steps?: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected