{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconColors/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 IconColors: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconColors\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.9996 2C9.1224 2 6.78994 4.33245 6.78994 7.20968C6.78994 7.96527 6.95023 8.68097 7.23778 9.32663C7.8908 10.7929 9.20071 11.9007 10.7905 12.2785C10.9341 12.0289 11.0926 11.789 11.2646 11.5601C12.549 9.85056 14.5966 8.74194 16.9028 8.74194C16.9287 8.74194 16.9546 8.74208 16.9804 8.74236C17.1291 8.25853 17.2093 7.74408 17.2093 7.20968C17.2093 4.33245 14.8768 2 11.9996 2ZM13.1495 19.4033C14.0981 20.3887 15.429 21 16.9028 21C19.7801 21 22.1125 18.6675 22.1125 15.7903C22.1125 13.1145 20.0944 10.9087 17.4977 10.6141C17.3028 10.592 17.1043 10.5806 16.9028 10.5806C15.429 10.5806 14.0981 11.192 13.1495 12.1774C13.2932 12.4177 13.423 12.6674 13.5379 12.9253C13.9283 13.8019 14.1448 14.772 14.1448 15.7903C14.1448 17.1099 13.7814 18.3464 13.1495 19.4033ZM12.0772 14.2576C12.2259 14.7415 12.3061 15.2559 12.3061 15.7903C12.3061 16.9644 11.9188 18.0454 11.2646 18.9161C10.3126 20.1833 8.79999 21 7.0964 21C4.21917 21 1.88672 18.6675 1.88672 15.7903C1.88672 13.3296 3.59342 11.2664 5.88725 10.7215C6.97703 12.6145 8.92154 13.9547 11.1975 14.2128C11.4611 14.2427 11.7288 14.2581 11.9996 14.2581C12.0255 14.2581 12.0514 14.2579 12.0772 14.2576Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconColors;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA0wC,EAA1wC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qnCAAqnC,KAAK,eAAc,CAAI,EAClxC,EAEc",
  "debugId": "36DC5CF6240A458964756E2164756E21",
  "names": []
}