{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconReact/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 IconReact: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"react\"><path d=\"M12.0369 9.97004C13.1478 9.97004 14.0483 10.8706 14.0483 11.9815C14.0483 13.0923 13.1478 13.9929 12.0369 13.9929C10.926 13.9929 10.0255 13.0923 10.0255 11.9815C10.0255 10.8706 10.926 9.97004 12.0369 9.97004Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.9993 4.25013C13.9513 2.68807 15.8818 2.11517 17.2485 2.90435C18.4701 3.6098 19.0167 5.24754 18.7871 7.51655C18.7671 7.71587 18.7389 7.91895 18.7078 8.1242C20.9997 9.02141 22.4527 10.3774 22.4975 11.9258L22.5 11.9997C22.5 13.5781 21.0376 14.9653 18.7093 15.8753C18.7404 16.0806 18.7686 16.2836 18.7886 16.4829C19.0182 18.7519 18.4715 20.3895 17.25 21.095C16.83 21.333 16.3541 21.4548 15.8714 21.4477C14.7128 21.4477 13.3609 20.8386 11.9993 19.7494C10.637 20.8387 9.28569 21.4477 8.12857 21.4477C7.64586 21.4549 7.16997 21.3331 6.75 21.095C5.52846 20.3895 4.98181 18.7519 5.21145 16.4829C5.23145 16.2836 5.25884 16.0806 5.2907 15.8753C2.96241 14.9638 1.50003 13.5789 1.5 11.9997C1.5 10.5888 2.64459 9.2949 4.72325 8.36047C4.90621 8.27823 5.09664 8.19977 5.2907 8.12568C5.25885 7.91969 5.23145 7.71587 5.21145 7.51655C4.9818 5.24754 5.52843 3.6098 6.75 2.90435C8.11676 2.11517 10.0474 2.68806 11.9993 4.25013ZM17.7515 16.2065C16.7834 16.4981 15.792 16.7062 14.7883 16.8283C14.1799 17.6376 13.5035 18.3935 12.7666 19.0877C14.3801 20.3348 15.8559 20.7475 16.7508 20.2288C17.5724 19.7543 17.9554 18.4925 17.8102 16.7535L17.7967 16.5836C17.7841 16.4591 17.7693 16.3339 17.7515 16.2065ZM6.25077 16.2065C6.23373 16.3339 6.21813 16.4591 6.20628 16.5836C6.02179 18.381 6.38995 19.6973 7.20985 20.2053L7.25154 20.2288C8.14716 20.746 9.62216 20.3348 11.2363 19.0877C10.4992 18.3935 9.82248 17.6376 9.21386 16.8283C8.21021 16.7061 7.2189 16.498 6.25077 16.2065ZM13.4112 16.9594C12.9497 16.9876 12.4763 17.0039 12 17.0039C11.5237 17.0039 11.0532 16.9876 10.5924 16.9594C11.0286 17.4838 11.4989 17.9789 12 18.4415C12.5022 17.9788 12.9736 17.4837 13.4112 16.9594ZM11.9993 7.99898C11.2489 7.99851 10.4988 8.03749 9.75247 8.11596C9.31585 8.72257 8.91028 9.35103 8.53751 9.99887C8.16287 10.6476 7.8224 11.3155 7.51746 11.9997C7.8224 12.684 8.16288 13.3518 8.53751 14.0005C8.91088 14.6509 9.3176 15.2817 9.7561 15.8901C10.5011 15.9667 11.2496 16.0047 11.9985 16.0041C12.7477 16.0047 13.4964 15.9667 14.2416 15.8901C14.6263 15.3578 14.9868 14.8083 15.3219 14.2435L15.461 14.0005C15.8353 13.3516 16.1758 12.6838 16.4811 11.9997C16.1758 11.3156 15.8354 10.6477 15.461 9.99887C15.0868 9.34999 14.6797 8.72054 14.2416 8.11299C13.4966 8.03652 12.7482 7.99853 11.9993 7.99898ZM7.00555 13.2625C6.77133 13.9028 6.57911 14.5578 6.43003 15.2232C6.99869 15.4 7.57697 15.5439 8.16202 15.6543L8.41312 15.7011C8.1605 15.3166 7.91236 14.9119 7.67234 14.5013C7.43234 14.0908 7.21148 13.6767 7.00555 13.2625ZM16.9936 13.2625C16.7847 13.6767 16.5633 14.0909 16.327 14.5013C16.088 14.9168 15.8411 15.3168 15.5862 15.7011C16.2567 15.5854 16.9189 15.4257 17.5685 15.2232C17.4375 14.64 17.2733 14.0649 17.0768 13.5006L16.9936 13.2625ZM5.48248 9.12447C5.36395 9.17387 5.24759 9.22336 5.13351 9.27276C3.46307 10.0264 2.50011 11.0201 2.50011 11.9997C2.50014 13.0335 3.59431 14.1064 5.48182 14.8808C5.71457 13.8953 6.0308 12.9315 6.42706 11.9997C6.03154 11.0698 5.7155 10.1079 5.48248 9.12447ZM18.5205 9.11854C18.2874 10.1039 17.9712 11.0678 17.5752 11.9997C17.9466 12.8729 18.248 13.7742 18.4765 14.6949L18.5197 14.8808C20.4072 14.1064 21.5013 13.0335 21.5014 11.9997C21.5014 10.966 20.4043 9.89291 18.5205 9.11854ZM15.581 8.29753C15.8052 8.63383 16.0233 8.98228 16.2351 9.34278L16.3262 9.49881C16.5654 9.90859 16.787 10.3228 16.993 10.737C17.2269 10.0965 17.4191 9.4416 17.5685 8.77633C16.9172 8.57327 16.2533 8.41325 15.581 8.29753ZM8.40933 8.30346C7.7404 8.42041 7.07976 8.58059 6.43151 8.78292C6.56184 9.3629 6.72494 9.93493 6.92003 10.4963L7.00192 10.7362C7.21081 10.3212 7.42929 9.91219 7.66855 9.49799C7.90783 9.08376 8.15598 8.68657 8.40933 8.30346ZM8.13829 3.55269C7.82793 3.54545 7.52109 3.62074 7.24923 3.77067C6.42829 4.24521 6.04318 5.50762 6.1903 7.24601L6.20398 7.41572C6.21583 7.54021 6.23142 7.66549 6.24846 7.7922C7.21698 7.50259 8.20832 7.29534 9.21172 7.17269C9.82065 6.36319 10.4977 5.60728 11.2355 4.9133C10.0777 4.01816 8.99094 3.55271 8.13829 3.55269ZM15.8617 3.55203C15.0091 3.55205 13.9223 4.01735 12.7645 4.91248C13.5018 5.60595 14.1784 6.3614 14.7868 7.17039C15.7905 7.29246 16.7819 7.50056 17.7501 7.7922C17.7678 7.66551 17.7826 7.53953 17.7952 7.41506C17.9804 5.58843 17.5996 4.25967 16.7514 3.76985C16.4967 3.62909 16.2111 3.55419 15.9207 3.55154L15.8617 3.55203ZM11.9956 5.55719C11.4944 6.01982 11.0242 6.51489 10.588 7.03924C11.0502 7.00959 11.5195 6.99475 11.9956 6.99475C12.4756 6.99475 12.946 7.01108 13.4067 7.03924C12.9694 6.51479 12.4979 6.01968 11.9956 5.55719Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconReact;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA+sJ,EAA/sJ,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,62IAA62I,KAAK,eAAc,CAAI,GAGzsJ",
  "debugId": "52EE6C0BE250555A64756E2164756E21",
  "names": []
}