MCPcopy Create free account
hub / github.com/TheCSir/TerminalStart / MatrixWidgetProps

Interface MatrixWidgetProps

src/components/widgets/MatrixWidget.tsx:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import type { MatrixColumn } from "@/utils/matrixUtils";
4
5interface 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
17export const MatrixWidget: React.FC<MatrixWidgetProps> = ({ options, speed = 50 }) => {
18 const activeSpeed = options?.speed ?? speed;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected