()
| 21 | const springConfig = { type: 'spring', stiffness: 500, damping: 30 } |
| 22 | |
| 23 | const handleToggle = () => { |
| 24 | const newState = !toggled |
| 25 | setToggled(newState) |
| 26 | if (onToggle) { |
| 27 | onToggle(newState) |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | const spanVariantBuilder = (side: string) => { |
| 32 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected