| 3 | import { AnimatePresence, motion } from 'framer-motion' |
| 4 | |
| 5 | interface SlideToggleProps { |
| 6 | onToggle?: (toggled: boolean) => void |
| 7 | onLabel?: string |
| 8 | offLabel?: string |
| 9 | isToggled?: boolean |
| 10 | } |
| 11 | |
| 12 | interface SlideToggleContextType { |
| 13 | toggled: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected