{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBack10s/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "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=\"square-filled-radius-0-stroke-2-IconBack10s\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5 6.34298V4H3V10H9V8H6.25442C7.51998 6.18566 9.62231 5 12 5C15.2603 5 18.0024 7.2299 18.7795 10.2493L20.7164 9.75074C19.7174 5.86919 16.195 3 12 3C9.17168 3 6.64938 4.30446 5 6.34298Z\" fill=\"currentColor\"/><Path d=\"M9.50049 21H7.4248V14.2461H7.33594C6.76465 14.6206 6.00293 15.1094 5.38086 15.541V13.6938C6.04736 13.2241 6.771 12.7607 7.4502 12.3354H9.50049V21Z\" fill=\"currentColor\"/><Path d=\"M10.8081 16.9375V16.3853C10.8081 13.8843 12.0649 12.1831 14.2549 12.1831C16.4639 12.1831 17.6572 13.8652 17.6572 16.3853V16.9375C17.6572 19.2798 16.521 21.1587 14.2104 21.1587C12.0078 21.1587 10.8081 19.4385 10.8081 16.9375ZM12.9092 16.3916V16.9312C12.9092 18.6577 13.4424 19.4829 14.2358 19.4829C15.0229 19.4829 15.5625 18.645 15.5625 16.9312V16.3916C15.5625 14.6777 15.0229 13.8589 14.2358 13.8589C13.4424 13.8589 12.9092 14.665 12.9092 16.3916Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBack10s;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAk+B,EAAl+B,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2LAA2L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kcAAkc,KAAK,eAAc,CAAI,EAC1+B,EAEc",
  "debugId": "B0AF7AC0A68A510864756E2164756E21",
  "names": []
}