{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconInsights/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 IconInsights: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconInsights\"><Path d=\"M20 8C21.1046 8 22 8.89543 22 10C22 11.1046 21.1046 12 20 12C19.8843 12 19.7714 11.9876 19.6611 11.9688L16.875 15.3115C16.954 15.5265 17 15.7577 17 16C17 17.1046 16.1046 18 15 18C13.8954 18 13 17.1046 13 16C13 15.8844 13.0114 15.7714 13.0303 15.6611L9.6875 12.875C9.47279 12.9538 9.24201 13 9 13C8.93472 13 8.87032 12.9954 8.80664 12.9893L5.81836 17.1719C5.93359 17.4245 6 17.7042 6 18C6 19.1046 5.10457 20 4 20C2.89543 20 2 19.1046 2 18C2 16.8954 2.89543 16 4 16C4.06492 16 4.12905 16.0037 4.19238 16.0098L7.18066 11.8262C7.06601 11.5741 7 11.295 7 11C7 9.89543 7.89543 9 9 9C10.1046 9 11 9.89543 11 11C11 11.1153 10.9875 11.2279 10.9688 11.3379L14.3105 14.124C14.5257 14.0449 14.7575 14 15 14C15.1149 14 15.2273 14.0117 15.3369 14.0303L18.123 10.6875C18.0444 10.473 18 10.2418 18 10C18 8.89543 18.8954 8 20 8Z\" fill=\"currentColor\"/><Path d=\"M4.5 7C5.32843 7 6 7.67157 6 8.5C6 9.32843 5.32843 10 4.5 10C3.67157 10 3 9.32843 3 8.5C3 7.67157 3.67157 7 4.5 7Z\" fill=\"currentColor\"/><Path d=\"M17 6.5L14.5 9L12 6.5L14.5 4L17 6.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconInsights;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAqnC,EAArnC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,8yBAA8yB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qHAAqH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,CAAI,EAC7nC,EAEc",
  "debugId": "B60F69321A6C503664756E2164756E21",
  "names": []
}