build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -0,0 +1,34 @@
export default {
classes: {
container: 'radio',
label: 'cursor-pointer',
input:
'cursor-pointer flex-shrink-0 inline-block text-primary-500 align-middle bg-white border border-gray-300 rounded-full outline-none appearance-none select-none transition duration-200 ease-in-out',
},
variants: {
success: {
input:
'cursor-pointer flex-shrink-0 inline-block text-success align-middle bg-white border border-gray-300 rounded-full outline-none appearance-none select-none transition duration-200 ease-in-out',
label: 'cursor-pointer',
},
danger: {
input:
'cursor-pointer flex-shrink-0 inline-block text-danger align-middle bg-white border border-gray-300 rounded-full outline-none appearance-none select-none transition duration-200 ease-in-out',
label: 'cursor-pointer',
},
},
sizes: {
sm: {
input: 'w-4 h-4',
label: 'ml-2',
},
default: {
input: 'w-6 h-6',
label: 'ml-3 text-lg',
},
lg: {
input: 'w-8 h-8',
label: 'ml-4 text-xl',
},
},
}