| 4 | import * as THREE from "three"; |
| 5 | |
| 6 | interface LightPillarProps { |
| 7 | topColor?: string; |
| 8 | bottomColor?: string; |
| 9 | intensity?: number; |
| 10 | rotationSpeed?: number; |
| 11 | interactive?: boolean; |
| 12 | className?: string; |
| 13 | glowAmount?: number; |
| 14 | pillarWidth?: number; |
| 15 | pillarHeight?: number; |
| 16 | noiseIntensity?: number; |
| 17 | mixBlendMode?: React.CSSProperties["mixBlendMode"]; |
| 18 | pillarRotation?: number; |
| 19 | opacity?: number; |
| 20 | } |
| 21 | |
| 22 | const LightPillar: React.FC<LightPillarProps> = ({ |
| 23 | topColor = "#5227FF", |
nothing calls this directly
no outgoing calls
no test coverage detected