Linear Gradient Trail Cursor

The AnimatedLinearGradientTrailCursor creates an animated linear gradient trail effect following your cursor. Customize the properties below:

import { AnimatedLinearGradientTrailCursor } from 'funky-cursor';

const Example = () => {
  const [colors, setColors] = useState(['#ff0000', '#0000ff']); // Default gradient colors
  const [speed, setSpeed] = useState(1);          // Default speed

  return (
    <div>
      <AnimatedLinearGradientTrailCursor 
        colors={colors} 
        speed={speed} 
      />
    </div>
  );
};

Move your cursor around to see the animated linear gradient trail effect!