| 10 | } from "react"; |
| 11 | |
| 12 | interface ThreeDCardProps { |
| 13 | children: ReactNode; |
| 14 | className?: string; |
| 15 | innerId?: string; |
| 16 | maxRotation?: number; |
| 17 | glowOpacity?: number; |
| 18 | shadowBlur?: number; |
| 19 | parallaxOffset?: number; |
| 20 | transitionDuration?: string; |
| 21 | backgroundImage?: string | null; |
| 22 | enableGlow?: boolean; |
| 23 | enableShadow?: boolean; |
| 24 | enableParallax?: boolean; |
| 25 | hoverPadding?: number; |
| 26 | trackOnWindow?: boolean; |
| 27 | } |
| 28 | |
| 29 | function ThreeDCard({ |
| 30 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected