{
  "version": 3,
  "sources": ["src/IconNumbers123/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 IconNumbers123: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconNumbers123\"><Path d=\"M18.1322 17.1572C16.6215 17.1572 15.4936 16.5283 14.9945 15.4619C14.8646 15.2158 14.8168 15.0039 14.8168 14.7783C14.8168 14.5117 14.9809 14.334 15.2475 14.334C15.4662 14.334 15.5893 14.457 15.685 14.751C15.9584 15.6943 16.8129 16.3369 18.1322 16.3369C19.5609 16.3369 20.5521 15.4824 20.559 14.3203C20.5658 13.0283 19.5951 12.29 18.0229 12.29H17.1684C16.9154 12.29 16.7445 12.1328 16.7445 11.8936C16.7445 11.6543 16.9154 11.4902 17.1684 11.4902H17.9818C19.3012 11.4902 20.2104 10.7109 20.2104 9.61719C20.2104 8.55078 19.4311 7.79883 18.098 7.79883C16.9223 7.79883 16.1566 8.39355 15.8764 9.37793C15.7807 9.66504 15.6986 9.78809 15.4457 9.78809C15.1791 9.78809 15.0287 9.63086 15.0287 9.35059C15.0287 9.125 15.0766 8.90625 15.1928 8.66699C15.6371 7.62793 16.7172 6.97852 18.098 6.97852C19.9779 6.97852 21.1537 8.09277 21.1537 9.50781C21.1537 10.7314 20.3129 11.5859 19.0482 11.8389V11.8662C20.518 11.9824 21.5092 12.8916 21.5092 14.293C21.5092 15.9678 20.06 17.1572 18.1322 17.1572Z\" fill=\"currentColor\"/><Path d=\"M8.20234 17C7.92207 17 7.7375 16.8496 7.7375 16.6035C7.7375 16.4121 7.78535 16.3232 8.0041 16.0908L11.2443 12.6934C12.6457 11.2168 13.0148 10.6221 13.0148 9.75391C13.0148 8.63965 12.1262 7.79883 10.9367 7.79883C9.68574 7.79883 8.88594 8.55762 8.62617 9.6582C8.57148 9.86328 8.46211 10 8.20234 10C7.92891 10 7.77168 9.82227 7.77168 9.57617C7.77168 9.49414 7.77852 9.42578 7.79219 9.33008C7.94941 8.18848 9.06367 6.97852 10.923 6.97852C12.673 6.97852 13.9445 8.12695 13.9445 9.70605C13.9445 10.7656 13.4455 11.5791 11.7844 13.3018L9.06367 16.1387V16.166H13.8283C14.0881 16.166 14.2658 16.3301 14.2658 16.583C14.2658 16.8359 14.0881 17 13.8283 17H8.20234Z\" fill=\"currentColor\"/><Path d=\"M5.56641 17.1162C5.2998 17.1162 5.11523 16.918 5.11523 16.6309V8.16113H5.09473L3.00293 9.5625C2.90039 9.6377 2.80469 9.67188 2.68848 9.67188C2.46289 9.67188 2.3125 9.51465 2.3125 9.28223C2.3125 9.11133 2.37402 9.00195 2.57227 8.8584L4.91016 7.26562C5.18359 7.06738 5.30664 7.01953 5.51855 7.01953C5.82617 7.01953 6.01758 7.21094 6.01758 7.53223V16.6309C6.01758 16.918 5.83301 17.1162 5.56641 17.1162Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNumbers123;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAAqqE,EAArqE,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,u9BAAu9B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+oBAA+oB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mZAAmZ,KAAK,eAAc,CAAI,CAC7qE,EAEc",
  "debugId": "08307AE62914AB7864756E2164756E21",
  "names": []
}