mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
13 lines
412 B
JavaScript
13 lines
412 B
JavaScript
export default function () {
|
|
return function ({ addUtilities, config }) {
|
|
addUtilities({
|
|
'.cursor-auto': { cursor: 'auto' },
|
|
'.cursor-default': { cursor: 'default' },
|
|
'.cursor-pointer': { cursor: 'pointer' },
|
|
'.cursor-wait': { cursor: 'wait' },
|
|
'.cursor-move': { cursor: 'move' },
|
|
'.cursor-not-allowed': { cursor: 'not-allowed' },
|
|
}, config('modules.cursor'))
|
|
}
|
|
}
|