@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
52 lines (51 loc) • 854 B
text/typescript
const size = [
"3xs",
"2xs",
"xs",
"sm",
"md",
"lg",
"xl",
"2xl",
"3xl"
] as const
export default {
"slots": {
"root": "inline-flex justify-end",
"base": "relative rounded-full ring-white dark:ring-base-700 last:me-0"
},
"variants": {
"size": {
"3xs": {
"base": "ring -me-0.5"
},
"2xs": {
"base": "ring -me-0.5"
},
"xs": {
"base": "ring -me-0.5"
},
"sm": {
"base": "ring -me-1.5"
},
"md": {
"base": "ring-2 -me-1.5"
},
"lg": {
"base": "ring-2 -me-1.5"
},
"xl": {
"base": "ring-3 -me-2"
},
"2xl": {
"base": "ring-3 -me-2"
},
"3xl": {
"base": "ring-3 -me-2"
}
}
},
"defaultVariants": {
"size": "md" as typeof size[number]
}
}