{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconImagineHead/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconImagineHead: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"imagine-head, thinking, ai\"><path d=\"M3.66113 11.2783C4.05985 11.1675 4.47364 11.4001 4.58496 11.7988C4.74048 12.3557 5.03363 12.9246 5.41309 13.5312C5.80477 14.1573 6.22145 14.7254 6.66504 15.3936C7.49059 16.6371 8.34518 18.1266 8.06348 19.8086C8.06212 19.8166 8.0602 19.8251 8.05859 19.833L7.74316 21.3984C7.66115 21.8041 7.26509 22.0669 6.85938 21.9854C6.45374 21.9033 6.19099 21.5082 6.27246 21.1025L6.58398 19.5596C6.75819 18.5163 6.24981 17.4801 5.41504 16.2227C5.02839 15.6403 4.53896 14.9623 4.1416 14.3271C3.73207 13.6725 3.35175 12.9618 3.13965 12.2021C3.02839 11.8032 3.26221 11.3897 3.66113 11.2783Z\" fill=\"currentColor\"/><path d=\"M11.5283 2.01172C13.4728 2.08323 14.9237 2.51329 15.9932 3.27344C17.0718 4.04031 17.6825 5.08537 18.0518 6.22363C18.2433 6.81342 18.6878 7.24814 19.3477 7.64453C19.6772 7.84247 20.0413 8.01881 20.4287 8.19922C20.8044 8.37413 21.2199 8.56074 21.5967 8.75684C21.7918 8.85869 21.9328 9.04117 21.9814 9.25586C22.0299 9.47075 21.9822 9.69709 21.8496 9.87305L20.5342 11.6162C21.09 13.3816 21.238 14.6751 21.0273 15.6514C20.7841 16.7777 20.0945 17.3755 19.3516 17.7422C19.0014 17.915 18.6299 18.0422 18.3076 18.1514C17.9688 18.2661 17.6824 18.3615 17.4229 18.4814C16.9402 18.7046 16.6432 18.9656 16.5127 19.4727L16.5107 19.4805L15.9854 21.4443C15.8781 21.8441 15.4662 22.0813 15.0664 21.9746C14.6667 21.8673 14.4293 21.4565 14.5361 21.0566L15.0625 19.0928C15.344 18.0078 16.0631 17.4576 16.793 17.1201C17.1403 16.9595 17.5108 16.8373 17.8262 16.7305C18.158 16.6181 18.4396 16.5193 18.6885 16.3965C19.1437 16.1717 19.4405 15.8951 19.5615 15.335C19.7001 14.6927 19.6242 13.5995 18.9922 11.7129C18.9137 11.4786 18.9557 11.2198 19.1045 11.0225L20.0996 9.7002C20.0012 9.65475 19.8997 9.60789 19.7959 9.55957C19.4011 9.37576 18.9765 9.17075 18.5752 8.92969C17.7729 8.44767 16.9765 7.7696 16.625 6.68652C16.3247 5.76087 15.8694 5.02613 15.124 4.49609C14.3688 3.9593 13.2341 3.57451 11.4727 3.50977C11.0591 3.4944 10.7361 3.14694 10.751 2.7334C10.7662 2.31946 11.1144 1.99652 11.5283 2.01172Z\" fill=\"currentColor\"/><path d=\"M6 2C6.24094 2 6.4574 2.1482 6.54395 2.37305L7.24023 4.18555C7.34181 4.44944 7.55056 4.65819 7.81445 4.75977L9.62695 5.45605C9.8518 5.5426 10 5.75906 10 6C10 6.24094 9.8518 6.4574 9.62695 6.54395L7.81445 7.24023C7.55056 7.34181 7.34181 7.55056 7.24023 7.81445L6.54395 9.62695C6.4574 9.8518 6.24094 10 6 10C5.75906 10 5.5426 9.8518 5.45605 9.62695L4.75977 7.81445C4.65819 7.55056 4.44944 7.34181 4.18555 7.24023L2.37305 6.54395C2.1482 6.4574 2 6.24094 2 6C2 5.75906 2.1482 5.5426 2.37305 5.45605L4.18555 4.75977C4.44944 4.65819 4.65819 4.44944 4.75977 4.18555L5.45605 2.37305C5.5426 2.1482 5.75906 2 6 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconImagineHead;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA+pF,EAA/pF,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,ikBAAikB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,o2CAAo2C,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8lBAA8lB,KAAK,eAAc,CAAI,GAGzpF",
  "debugId": "BA44957A7A3D8AB964756E2164756E21",
  "names": []
}