{
  "version": 3,
  "sources": ["src/IconStackedBarChart/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 IconStackedBarChart: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconStackedBarChart\"><Path d=\"M21.25 18.5C21.6642 18.5 22 18.8358 22 19.25C22 19.6642 21.6642 20 21.25 20H2.75C2.33579 20 2 19.6642 2 19.25C2 18.8358 2.33579 18.5 2.75 18.5H21.25Z\" fill=\"currentColor\"/><Path d=\"M4 16.25V13.75C4 13.3358 4.33579 13 4.75 13C5.16421 13 5.5 13.3358 5.5 13.75V16.25C5.5 16.6642 5.16421 17 4.75 17C4.33579 17 4 16.6642 4 16.25Z\" fill=\"currentColor\"/><Path d=\"M8.8335 16.25V12.75C8.8335 12.3358 9.16928 12 9.5835 12C9.99771 12 10.3335 12.3358 10.3335 12.75V16.25C10.3335 16.6642 9.99771 17 9.5835 17C9.16928 17 8.8335 16.6642 8.8335 16.25Z\" fill=\"currentColor\"/><Path d=\"M13.667 16.25V10.25C13.667 9.83579 14.0028 9.5 14.417 9.5C14.8312 9.5 15.167 9.83579 15.167 10.25V16.25C15.167 16.6642 14.8312 17 14.417 17C14.0028 17 13.667 16.6642 13.667 16.25Z\" fill=\"currentColor\"/><Path d=\"M18.5005 16.25V13.25C18.5005 12.8358 18.8363 12.5 19.2505 12.5C19.6647 12.5 20.0005 12.8358 20.0005 13.25V16.25C20.0005 16.6642 19.6647 17 19.2505 17C18.8363 17 18.5005 16.6642 18.5005 16.25Z\" fill=\"currentColor\"/><Path d=\"M18.5005 9.75V8.25C18.5005 7.83579 18.8363 7.5 19.2505 7.5C19.6647 7.5 20.0005 7.83579 20.0005 8.25V9.75C20.0005 10.1642 19.6647 10.5 19.2505 10.5C18.8363 10.5 18.5005 10.1642 18.5005 9.75Z\" fill=\"currentColor\"/><Path d=\"M13.667 6.75V4.75C13.667 4.33579 14.0028 4 14.417 4C14.8312 4 15.167 4.33579 15.167 4.75V6.75C15.167 7.16421 14.8312 7.5 14.417 7.5C14.0028 7.5 13.667 7.16421 13.667 6.75Z\" fill=\"currentColor\"/><Path d=\"M8.8335 9.25V6.75C8.8335 6.33579 9.16928 6 9.5835 6C9.99771 6 10.3335 6.33579 10.3335 6.75V9.25C10.3335 9.66421 9.99771 10 9.5835 10C9.16928 10 8.8335 9.66421 8.8335 9.25Z\" fill=\"currentColor\"/><Path d=\"M4 10.25V8.75C4 8.33579 4.33579 8 4.75 8C5.16421 8 5.5 8.33579 5.5 8.75V10.25C5.5 10.6642 5.16421 11 4.75 11C4.33579 11 4 10.6642 4 10.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconStackedBarChart;\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,EAAwE,EAAM,KAAK,CAAC,IACxF,gBAAk2D,EAAl2D,IAAqB,EAAO,OAAO,wDAAuD,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kJAAkJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kMAAkM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gMAAgM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,CAAI,CAC12D,EAEc",
  "debugId": "98ACF9BB06FD11CA64756E2164756E21",
  "names": []
}