mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
10 lines
254 B
JavaScript
10 lines
254 B
JavaScript
import defineClasses from '../util/defineClasses'
|
|
|
|
export default function() {
|
|
return defineClasses({
|
|
'cursor-auto': { 'cursor': 'auto' },
|
|
'cursor-pointer': { 'cursor': 'pointer' },
|
|
'cursor-not-allowed': { 'cursor': 'not-allowed' },
|
|
})
|
|
}
|