{
  "version": 3,
  "sources": ["src/IconBack10s/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 IconBack10s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconBack10s\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.52968 9H8.5C8.77614 9 9 9.22386 9 9.5C9 9.77614 8.77614 10 8.5 10H3.5C3.22386 10 3 9.77614 3 9.5V4.5C3 4.22386 3.22386 4 3.5 4C3.77614 4 4 4.22386 4 4.5V7.74696C5.4456 5.05099 8.67429 3 12.0093 3C16.0243 3 19.4176 5.67043 20.5843 9.34884C20.6678 9.61206 20.5221 9.89312 20.2588 9.9766C19.9956 10.0601 19.7146 9.91438 19.6311 9.65116C18.5892 6.36619 15.5659 4 12.0093 4C8.70545 4 5.52555 6.28428 4.52968 9Z\" fill=\"currentColor\"/><Path d=\"M8.04834 20.4541V13.5542H7.99756L6.8042 14.4238C6.62012 14.5571 6.48682 14.6079 6.34717 14.6079C6.1123 14.6079 5.92188 14.4111 5.92188 14.1699C5.92188 13.9858 6.04248 13.8145 6.29639 13.6304L7.57861 12.6782C7.97852 12.3799 8.20068 12.2847 8.44824 12.2847C8.85449 12.2847 9.14014 12.583 9.14014 13.0146V20.4541C9.14014 20.8413 8.93701 21.0635 8.59424 21.0635C8.25781 21.0635 8.04834 20.835 8.04834 20.4541Z\" fill=\"currentColor\"/><Path d=\"M10.9746 16.8359V16.5186C10.9746 13.8906 12.0981 12.1514 14.0596 12.1514C16.021 12.1514 17.1382 13.8906 17.1382 16.5186V16.8359C17.1382 19.4575 16.0146 21.1841 14.0532 21.1841C12.0981 21.1841 10.9746 19.4639 10.9746 16.8359ZM12.0854 16.5249V16.8232C12.0854 18.937 12.8408 20.2256 14.0596 20.2256C15.2783 20.2256 16.0337 18.937 16.0337 16.8232V16.5249C16.0337 14.4111 15.272 13.1162 14.0532 13.1162C12.8408 13.1162 12.0854 14.4111 12.0854 16.5249Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBack10s;\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,gBAAm8C,EAAn8C,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2ZAA2Z,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wZAAwZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,icAAic,KAAK,eAAc,CAAI,CAC38C,EAEc",
  "debugId": "F071E2BD45CB9EED64756E2164756E21",
  "names": []
}