Type Alias GridBackgroundProps
GridBackgroundProps: HTMLMotionProps<"div"> & {
children?: React.ReactNode;
gridSize?: GridSize;
colors?: {
background?: string;
borderColor?: string;
borderSize?: string;
borderStyle?: "solid" | "dashed" | "dotted";
};
beams?: {
count?: number;
colors?: string[];
size?: string;
shadow?: string;
speed?: number;
};
}