import template from "/home/runner/work/b24ui/b24ui/src/theme/sidebar-body"

const result = typeof template === 'function' ? (template as Function)({
  "colorMode": true
}) : template

const theme = {
  "slots": {
    "root": "py-4 flex flex-1 flex-col overflow-y-auto [&>[data-slot=section]+[data-slot=section]]:mt-8"
  },
  "variants": {
    "scrollbarThin": {
      "true": {
        "root": "scrollbar-thin scrollbar-transparent"
      }
    }
  },
  "defaultVariants": {
    "scrollbarThin": true
  }
}

export default result as typeof theme