{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRotate360Right/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 IconRotate360Right: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRotate360Right\"><Path d=\"M12 5C14.883 5 17.5428 5.58243 19.5186 6.57031C21.4344 7.5283 23 9.03657 23 11C23 12.3161 22.2816 13.4377 21.2676 14.2979C20.2528 15.1586 18.8631 15.8336 17.2783 16.292L16.7217 14.3701C18.1257 13.964 19.2358 13.3983 19.9736 12.7725C20.7124 12.1458 21 11.5346 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.7978 3.67288 12.789 5.37598 13.6406C6.70699 14.3061 8.49522 14.7852 10.5293 14.9434L9.29297 13.707L10.707 12.293L14.4141 16L10.707 19.707L9.29297 18.293L10.6318 16.9531C8.2814 16.8001 6.14026 16.2591 4.48145 15.4297C2.56565 14.4717 1 12.9634 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 IconRotate360Right;\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,EAAuE,EAAM,KAAK,CAAC,IAAU,CACxG,OAAO,gBAAw1B,EAAx1B,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,iuBAAiuB,KAAK,eAAc,CAAI,EACh2B,EAEc",
  "debugId": "35BBA2D7573F955A64756E2164756E21",
  "names": []
}