| 2 | import { motion } from 'framer-motion' |
| 3 | |
| 4 | interface TabProps { |
| 5 | text: string |
| 6 | selected: boolean |
| 7 | setSelected: (text: string) => void |
| 8 | customID?: string |
| 9 | icon?: React.ComponentType<{ className?: string }> |
| 10 | } |
| 11 | |
| 12 | const Tab = ({ |
| 13 | text, |
nothing calls this directly
no outgoing calls
no test coverage detected