{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRotate360Left/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 IconRotate360Left: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRotate360Left\"><Path d=\"M12 5C14.883 5 17.5428 5.58243 19.5186 6.57031C21.4344 7.5283 23 9.03657 23 11C23 12.9634 21.4344 14.4717 19.5186 15.4297C17.8595 16.2592 15.718 16.8001 13.3672 16.9531L14.707 18.293L13.293 19.707L9.58594 16L13.293 12.293L14.707 13.707L13.4697 14.9434C15.5042 14.7853 17.2928 14.3062 18.624 13.6406C20.3271 12.789 21 11.7978 21 11C21 10.2022 20.3271 9.21101 18.624 8.35938C16.9805 7.53761 14.6398 7 12 7C9.36016 7 7.0195 7.53761 5.37598 8.35938C3.67288 9.21101 3 10.2022 3 11C3 11.5346 3.28762 12.1458 4.02637 12.7725C4.76423 13.3983 5.87429 13.964 7.27832 14.3701L6.72168 16.292C5.13692 15.8336 3.74723 15.1586 2.73242 14.2979C1.71842 13.4377 1 12.3161 1 11C1 9.03657 2.56565 7.5283 4.48145 6.57031C6.45721 5.58243 9.11699 5 12 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRotate360Left;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAo1B,EAAp1B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,8tBAA8tB,KAAK,eAAc,CAAI,EAC51B,EAEc",
  "debugId": "3F40304C91BD519B64756E2164756E21",
  "names": []
}