| 52 | } |
| 53 | |
| 54 | interface AnimatedTabsProps { |
| 55 | tabs?: string[] |
| 56 | selected: string |
| 57 | setSelected: (text: string) => void |
| 58 | center?: boolean |
| 59 | customID?: string |
| 60 | icons?: React.ComponentType<{ className?: string }>[] |
| 61 | } |
| 62 | |
| 63 | const AnimatedTabs = ({ |
| 64 | tabs, |
nothing calls this directly
no outgoing calls
no test coverage detected