@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
35 lines (30 loc) • 610 B
text/typescript
import template from "/home/runner/work/b24ui/b24ui/src/theme/button-group"
const size = [
"xs",
"sm",
"md",
"lg"
] as const
const orientation = [
"horizontal",
"vertical"
] as const
const result = typeof template === 'function' ? (template as Function)({
"colorMode": true
}) : template
const theme = {
"base": "relative",
"variants": {
"size": {
"xs": "",
"sm": "",
"md": "",
"lg": ""
},
"orientation": {
"horizontal": "flex flex-row -space-x-px",
"vertical": "flex flex-col -space-y-px"
}
}
}
export default result as typeof theme