You can customize colors, grid spacing, interaction distance, and animation smoothing through props, making it flexible for different use cases.
import { InteractiveLines } from "@/components/ui/interactive-lines"; export default function DemoOne() { return ( <div className="relative flex h-screen w-full flex-col items-center justify-center overflow-hidden "> <InteractiveLines /> <span className="pointer-events-none absolute z-10 text-center text-7xl leading-none font-semibold tracking-tighter whitespace-pre-wrap"> Interactive Lines </span> </div> ) }