{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAtom/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconAtom: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAtom\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.16942 5.00385C5.61664 4.97497 5.35582 5.11055 5.23312 5.23324C5.11043 5.35594 4.97484 5.61676 5.00373 6.16954C5.0326 6.72201 5.22483 7.45057 5.6143 8.3194C5.89606 8.94794 6.26924 9.62375 6.72607 10.3254C7.25365 9.69271 7.82873 9.06259 8.4456 8.44572C9.06247 7.82885 9.69259 7.25377 10.3253 6.72619C9.62363 6.26936 8.94782 5.89619 8.31928 5.61443C7.45045 5.22495 6.72189 5.03272 6.16942 5.00385ZM11.9999 5.44377C11.0153 4.75614 10.0474 4.19736 9.13739 3.78941C8.13847 3.34162 7.15899 3.05284 6.27379 3.00658C5.38891 2.96034 4.48245 3.15549 3.81891 3.81903C3.15537 4.48257 2.96021 5.38903 3.00646 6.27392C3.05272 7.15911 3.3415 8.1386 3.78929 9.13751C4.19724 10.0476 4.75602 11.0154 5.44365 12C4.75602 12.9846 4.19725 13.9525 3.78929 14.8625C3.3415 15.8614 3.05272 16.8409 3.00646 17.7261C2.96022 18.611 3.15538 19.5175 3.81891 20.181C4.48245 20.8445 5.38892 21.0397 6.2738 20.9935C7.15899 20.9472 8.13848 20.6584 9.13739 20.2106C10.0475 19.8027 11.0153 19.2439 11.9999 18.5563C12.9845 19.2439 13.9523 19.8027 14.8624 20.2106C15.8613 20.6584 16.8408 20.9472 17.726 20.9935C18.6109 21.0397 19.5173 20.8445 20.1809 20.181C20.8444 19.5175 21.0396 18.611 20.9933 17.7261C20.9471 16.8409 20.6583 15.8614 20.2105 14.8625C19.8026 13.9525 19.2438 12.9846 18.5562 12C19.2438 11.0154 19.8026 10.0476 20.2105 9.13751C20.6583 8.1386 20.9471 7.15912 20.9933 6.27392C21.0396 5.38904 20.8444 4.48257 20.1809 3.81903C19.5174 3.1555 18.6109 2.96034 17.726 3.00658C16.8408 3.05284 15.8613 3.34162 14.8624 3.78941C13.9524 4.19737 12.9845 4.75615 11.9999 5.44377ZM11.9999 7.94077C11.2886 8.50898 10.5686 9.15111 9.85981 9.85994C9.15099 10.5688 8.50886 11.2888 7.94065 12C8.50886 12.7113 9.15098 13.4313 9.85981 14.1401C10.5686 14.8489 11.2886 15.4911 11.9999 16.0593C12.7112 15.4911 13.4312 14.8489 14.14 14.1401C14.8488 13.4313 15.4909 12.7113 16.0592 12C15.4909 11.2888 14.8488 10.5688 14.14 9.85993C13.4312 9.15111 12.7112 8.50898 11.9999 7.94077ZM17.2737 10.3254C16.7462 9.69271 16.1711 9.06259 15.5542 8.44572C14.9373 7.82885 14.3072 7.25377 13.6745 6.72619C14.3762 6.26936 15.052 5.89619 15.6805 5.61443C16.5493 5.22495 17.2779 5.03273 17.8304 5.00386C18.3832 4.97497 18.644 5.11055 18.7667 5.23325C18.8894 5.35594 19.025 5.61676 18.9961 6.16954C18.9672 6.72201 18.775 7.45057 18.3855 8.3194C18.1037 8.94794 17.7306 9.62375 17.2737 10.3254ZM17.2737 13.6746C16.7462 14.3073 16.1711 14.9375 15.5542 15.5543C14.9373 16.1712 14.3072 16.7463 13.6745 17.2739C14.3762 17.7307 15.052 18.1039 15.6805 18.3856C16.5493 18.7751 17.2779 18.9673 17.8304 18.9962C18.3832 19.0251 18.644 18.8895 18.7667 18.7668C18.8894 18.6441 19.025 18.3833 18.9961 17.8305C18.9672 17.278 18.775 16.5495 18.3855 15.6806C18.1037 15.0521 17.7306 14.3763 17.2737 13.6746ZM10.3253 17.2739C9.69259 16.7463 9.06247 16.1712 8.4456 15.5543C7.82873 14.9375 7.25364 14.3073 6.72607 13.6746C6.26924 14.3763 5.89607 15.0521 5.61431 15.6806C5.22483 16.5495 5.03261 17.278 5.00373 17.8305C4.97485 18.3833 5.11043 18.6441 5.23313 18.7668C5.35582 18.8895 5.61664 19.0251 6.16942 18.9962C6.72189 18.9673 7.45045 18.7751 8.31928 18.3856C8.94782 18.1039 9.62363 17.7307 10.3253 17.2739Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAtom;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAAwsG,EAAxsG,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qjGAAqjG,KAAK,eAAc,CAAI,EAChtG,EAEc",
  "debugId": "A703E34B4CEA312164756E2164756E21",
  "names": []
}