{
  "version": 3,
  "sources": ["src/IconFilePng/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 IconFilePng: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconFilePng\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 14.5C3 14.2239 3.22386 14 3.5 14H5.5C6.67596 14 7.5 15.0956 7.5 16.25C7.5 17.4044 6.67596 18.5 5.5 18.5H4V20.5C4 20.7761 3.77614 21 3.5 21C3.22386 21 3 20.7761 3 20.5V14.5ZM4 17.5H5.5C5.9809 17.5 6.5 17.0066 6.5 16.25C6.5 15.4934 5.9809 15 5.5 15H4V17.5Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.75 14.5C8.75 14.2239 8.97386 14 9.25 14H9.75C9.9335 14 10.1022 14.1005 10.1896 14.2619L13 19.4502V14.5C13 14.2239 13.2239 14 13.5 14C13.7761 14 14 14.2239 14 14.5V20.5C14 20.7761 13.7761 21 13.5 21H13C12.8165 21 12.6478 20.8995 12.5604 20.7381L9.75 15.5498V20.5C9.75 20.7761 9.52614 21 9.25 21C8.97386 21 8.75 20.7761 8.75 20.5V14.5Z\" fill=\"currentColor\"/><Path d=\"M13 3H6.5C5.11929 3 4 4.11929 4 5.5V12H20V10H15.5C14.1193 10 13 8.88071 13 7.5V3Z\" fill=\"currentColor\"/><Path d=\"M19.8681 9C19.7522 8.6576 19.5624 8.34128 19.3084 8.07513L15.2026 3.77381C14.8731 3.42864 14.455 3.18815 14 3.0745V7.5C14 8.32843 14.6716 9 15.5 9H19.8681Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.2308 15C17.1626 15 16.2109 15.9036 16.2109 17.4701C16.2109 19.0406 17.1398 19.9983 18.3184 19.9999C18.9625 19.9917 19.6053 19.8514 20 19.5355V18.0247H19.0745C18.7983 18.0247 18.5745 17.8008 18.5745 17.5247C18.5745 17.2486 18.7983 17.0247 19.0745 17.0247H20.5C20.7761 17.0247 21 17.2486 21 17.5247V19.7515C21 19.877 20.9528 19.998 20.8677 20.0903C20.2029 20.8119 19.1135 20.9904 18.3274 20.9999L18.3213 21C16.4563 21 15.2109 19.4513 15.2109 17.4701C15.2109 15.4836 16.4868 14 18.2308 14C19.115 14 19.9809 14.2496 20.6984 14.8977C20.9033 15.0828 20.9194 15.3989 20.7343 15.6039C20.5492 15.8088 20.233 15.8249 20.0281 15.6398C19.5304 15.1902 18.9205 15 18.2308 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFilePng;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA0zD,EAA1zD,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oQAAoQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mVAAmV,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4pBAA4pB,KAAK,eAAc,CAAI,CACl0D,EAEc",
  "debugId": "72DB53179AF63CB064756E2164756E21",
  "names": []
}