{
  "version": 3,
  "sources": ["src/IconComboChartAxis/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 IconComboChartAxis: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconComboChartAxis\"><Path d=\"M3.75 3C4.16421 3 4.5 3.33579 4.5 3.75V9.85938L7.32031 7.68262C7.97096 7.18061 8.81214 6.99651 9.61328 7.17969L12.792 7.90625C13.0792 7.97185 13.3806 7.9336 13.6426 7.79883L19.4072 4.83301C19.7755 4.64375 20.2275 4.78901 20.417 5.15723C20.6063 5.52549 20.461 5.97754 20.0928 6.16699L14.3281 9.13281C13.7517 9.4293 13.0889 9.51266 12.457 9.36816L9.2793 8.6416C8.91508 8.55832 8.5321 8.64185 8.23633 8.87012L4.70801 11.5938C4.64369 11.6434 4.57259 11.6773 4.5 11.7031V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H20.75C21.1642 19.5 21.5 19.8358 21.5 20.25C21.5 20.6642 21.1642 21 20.75 21H5.75C4.23122 21 3 19.7688 3 18.25V3.75C3 3.33579 3.33579 3 3.75 3Z\" fill=\"currentColor\"/><Path d=\"M7.75 12C8.16421 12 8.5 12.3358 8.5 12.75V17.25C8.5 17.6642 8.16421 18 7.75 18C7.33579 18 7 17.6642 7 17.25V12.75C7 12.3358 7.33579 12 7.75 12Z\" fill=\"currentColor\"/><Path d=\"M12.75 13C13.1642 13 13.5 13.3358 13.5 13.75V17.25C13.5 17.6642 13.1642 18 12.75 18C12.3358 18 12 17.6642 12 17.25V13.75C12 13.3358 12.3358 13 12.75 13Z\" fill=\"currentColor\"/><Path d=\"M17.75 11C18.1642 11 18.5 11.3358 18.5 11.75V17.25C18.5 17.6642 18.1642 18 17.75 18C17.3358 18 17 17.6642 17 17.25V11.75C17 11.3358 17.3358 11 17.75 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconComboChartAxis;\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,EAAuE,EAAM,KAAK,CAAC,IACvF,gBAAmyC,EAAnyC,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,4oBAA4oB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kJAAkJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,CAAI,CAC3yC,EAEc",
  "debugId": "38F1B39B811365FE64756E2164756E21",
  "names": []
}