apps/www/content/docs/theming/cursors.mdx
Chakra UI uses the cursor token to define the cursor for interactive elements.
To customize the cursor for interactive elements in Chakra, set the desired
cursor token values.
Here's a list of the available cursor tokens:
Here's an example of how to change the cursor for a button, you can set the
button token to default.
import { createSystem, defaultConfig } from "@chakra-ui/react"
export const system = createSystem(defaultConfig, {
theme: {
tokens: {
cursor: {
button: { value: "pointer" },
},
},
},
})