{
  "version": 3,
  "sources": ["src/IconInsights/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconInsights\"><Path d=\"M20 7.99991C21.1046 7.99991 22 8.89534 22 9.99991C21.9999 11.1044 21.1045 11.9999 20 11.9999C19.6938 11.9999 19.4049 11.9286 19.1455 11.8056L16.6221 14.8339C16.8586 15.1624 17 15.5642 17 15.9999C16.9999 17.1044 16.1045 17.9999 15 17.9999C13.8955 17.9999 13.0001 17.1044 13 15.9999C13 15.6936 13.0703 15.404 13.1934 15.1444L10.166 12.622C9.8375 12.8586 9.43574 12.9999 9 12.9999C8.74663 12.9999 8.5053 12.9501 8.28223 12.8642L5.53223 16.7157C5.82379 17.0632 6 17.5108 6 17.9999C5.99995 19.1044 5.10454 19.9999 4 19.9999C2.89546 19.9999 2.00005 19.1044 2 17.9999C2 16.8953 2.89543 15.9999 4 15.9999C4.25324 15.9999 4.49479 16.0488 4.71777 16.1347L7.46777 12.2841C7.17622 11.9366 7.00002 11.489 7 10.9999C7 9.89534 7.89543 8.99991 9 8.99991C10.1046 8.99991 11 9.89534 11 10.9999C11 11.3053 10.929 11.5935 10.8066 11.8524L13.834 14.3759C14.1623 14.1397 14.5647 13.9999 15 13.9999C15.306 13.9999 15.5952 14.0704 15.8545 14.1933L18.377 11.1659C18.1406 10.8375 18 10.4354 18 9.99991C18 8.89534 18.8954 7.99991 20 7.99991Z\" fill=\"currentColor\"/><Path d=\"M4.5 6.99991C5.32843 6.99991 6 7.67148 6 8.49991C5.99995 9.32829 5.3284 9.99991 4.5 9.99991C3.6716 9.99991 3.00005 9.32829 3 8.49991C3 7.67148 3.67157 6.99991 4.5 6.99991Z\" fill=\"currentColor\"/><Path d=\"M13.793 4.49991C14.1835 4.10942 14.8165 4.10939 15.207 4.49991L16.5 5.79287C16.866 6.15899 16.8886 6.73805 16.5684 7.13076L16.5 7.20694L15.207 8.49991C14.8166 8.89029 14.1835 8.89024 13.793 8.49991L12.5 7.20694C12.1095 6.81644 12.1096 6.18341 12.5 5.79287L13.793 4.49991Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconInsights;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAAmmD,EAAnmD,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,y/BAAy/B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kRAAkR,KAAK,eAAc,CAAI,CAC3mD,EAEc",
  "debugId": "614168F2B39CC22064756E2164756E21",
  "names": []
}