import template from "/home/runner/work/b24ui/b24ui/src/theme/collapsible"

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

const theme = {
  "slots": {
    "root": "",
    "content": "motion-safe:data-[state=open]:animate-[collapsible-down_200ms_ease-out] motion-safe:data-[state=closed]:animate-[collapsible-up_200ms_ease-out] overflow-hidden"
  }
}

export default result as typeof theme