UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

8 lines (5 loc) 213 B
import { doc, isBrowser } from '@/internal/env'; export const cursorStyles = isBrowser ? doc.createElement('style') : null; if (cursorStyles) { cursorStyles.innerHTML = '* { cursor: grabbing !important; }'; }