{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRewind15s/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 IconRewind15s: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconRewind15s\"><Path d=\"M13 3.05493V5.5L9 2.75L13 0V2.04938C18.0533 2.5511 22 6.81465 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 9.23871 3.11984 6.73803 4.92893 4.92893L5.63604 5.63604C4.00681 7.26527 3 9.51458 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.36745 17.5 3.55237 13 3.05493Z\" fill=\"currentColor\"/><Path d=\"M11.7109 13.9082C11.7861 14.9717 12.6133 15.9062 14.1279 15.9062C15.6211 15.9062 16.7651 14.8696 16.7651 13.3604C16.7651 11.8887 15.6587 10.9004 14.3428 10.9004C13.5586 10.9004 12.9463 11.2764 12.7637 11.5288H12.7476L12.9893 9.22998H16.2173V8.4082H12.1997L11.7969 12.6729H12.5918C12.8066 12.1948 13.2954 11.6953 14.2031 11.6953C15.0894 11.6953 15.8198 12.3398 15.8198 13.3872C15.8198 14.5044 14.939 15.0952 14.187 15.0952C13.3438 15.0952 12.7314 14.6816 12.6133 13.9082H11.7109Z\" fill=\"currentColor\"/><Path d=\"M9.91699 15.7505V8.41895H9.04688C8.47754 8.7251 7.79541 9.12793 7.24219 9.52539V10.4814C7.75781 10.127 8.57422 9.62744 8.97168 9.4126H8.98779V15.7505H9.91699Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRewind15s;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAgmC,EAAhmC,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,gTAAgT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ieAAie,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,CAAI,EACxmC,EAEc",
  "debugId": "8F94306685CCE98564756E2164756E21",
  "names": []
}