@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
27 lines (25 loc) • 387 B
text/typescript
const size = [
"xs",
"sm",
"md",
"lg"
] as const
const orientation = [
"horizontal",
"vertical"
] as const
export default {
"base": "relative",
"variants": {
"size": {
"xs": "",
"sm": "",
"md": "",
"lg": ""
},
"orientation": {
"horizontal": "flex flex-row -space-x-px",
"vertical": "flex flex-col -space-y-px"
}
}
}