mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-17 13:38:07 +01:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
export default {
|
|
base: 'focus-visible:outline-primary-500 dark:focus-visible:outline-primary-400',
|
|
variants: {
|
|
active: {
|
|
true: 'text-primary-500 dark:text-primary-400',
|
|
false: 'text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200'
|
|
},
|
|
disabled: {
|
|
true: 'cursor-not-allowed opacity-75'
|
|
}
|
|
}
|
|
}
|