import { createUtil } from "../util"; const cursorAuto = createUtil({ cursor: "auto" }); const cursorDefault = createUtil({ cursor: "default" }); const cursorPointer = createUtil({ cursor: "pointer" }); const cursorWait = createUtil({ cursor: "wait" }); const cursorText = createUtil({ cursor: "text" }); const cursorMove = createUtil({ cursor: "move" }); const cursorNotAllowed = createUtil({ cursor: "not-allowed" }); export { cursorAuto, cursorDefault, cursorPointer, cursorWait, cursorText, cursorMove, cursorNotAllowed };