{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconForwards10s/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 IconForwards10s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconForwards10s\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.28516 9.75074C4.2842 5.86919 7.80655 3 12.0016 3C14.8299 3 17.3522 4.30446 19.0016 6.34299V4H21.0016V10H15.0016V8H17.7471C16.4816 6.18566 14.3792 5 12.0016 5C8.74121 5 5.99916 7.2299 5.22203 10.2493L3.28516 9.75074Z\" fill=\"currentColor\"/><Path d=\"M10.002 21H7.92636V14.2461H7.8375C7.26621 14.6206 6.50449 15.1094 5.88242 15.541V13.6938C6.54892 13.2241 7.27255 12.7607 7.95175 12.3354H10.002V21Z\" fill=\"currentColor\"/><Path d=\"M11.3097 16.9375V16.3853C11.3097 13.8843 12.5665 12.1831 14.7564 12.1831C16.9654 12.1831 18.1588 13.8652 18.1588 16.3853V16.9375C18.1588 19.2798 17.0226 21.1587 14.712 21.1587C12.5094 21.1587 11.3097 19.4385 11.3097 16.9375ZM13.4107 16.3916V16.9312C13.4107 18.6577 13.9439 19.4829 14.7374 19.4829C15.5245 19.4829 16.0641 18.645 16.0641 16.9312V16.3916C16.0641 14.6777 15.5245 13.8589 14.7374 13.8589C13.9439 13.8589 13.4107 14.665 13.4107 16.3916Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconForwards10s;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAygC,EAAzgC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6NAA6N,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sJAAsJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kcAAkc,KAAK,eAAc,CAAI,EACjhC,EAEc",
  "debugId": "2AB99D4E67EAD88A64756E2164756E21",
  "names": []
}