| 3 | import type { MatrixColumn } from "@/utils/matrixUtils"; |
| 4 | |
| 5 | interface MatrixWidgetProps { |
| 6 | options?: { |
| 7 | speed: number; |
| 8 | fade: number; |
| 9 | charSet: 'numbers' | 'latin' | 'mixed'; |
| 10 | charFlux: number; |
| 11 | glow: boolean; |
| 12 | fontSize: number; |
| 13 | }; |
| 14 | speed?: number; |
| 15 | } |
| 16 | |
| 17 | export const MatrixWidget: React.FC<MatrixWidgetProps> = ({ options, speed = 50 }) => { |
| 18 | const activeSpeed = options?.speed ?? speed; |
nothing calls this directly
no outgoing calls
no test coverage detected