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"
    }
  }
}