Animated Diagonal Lines Trail Cursor

The AnimatedDiagonalLinesTrailCursor creates an animated diagonal lines effect following your cursor. Customize the properties below:

import { AnimatedDiagonalLinesTrailCursor } from 'funky-cursor';

const Example = () => {
  const [color, setColor] = useState('#ff00ff'); // Default color
  const [speed, setSpeed] = useState(1);           // Default speed

  return (
    <div>
      <AnimatedDiagonalLinesTrailCursor 
        color={color} 
        speed={speed} 
      />
    </div>
  );
};

Move your cursor around to see the animated diagonal lines effect!