Fire Trail Cursor
The FireTrailCursor creates a fiery trail effect following your cursor. Customize the properties below:
import { FireTrailCursor } from 'funky-cursor';
const Example = () => {
const [color, setColor] = useState('#ff4500'); // Default color
const [size, setSize] = useState(10); // Default size
const [trails, setTrails] = useState(5); // Default trails
return (
<div>
<FireTrailCursor
color={color}
size={size}
trails={trails}
/>
</div>
);
};
Size: 10
Move your cursor around to see the fire trail effect!