{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimationOvershoot/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 IconAnimationOvershoot: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAnimationOvershoot\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M5.01614 19.9727L5.01585 19.9614L5.01494 19.9243C5.01417 19.8913 5.01307 19.8416 5.01182 19.7766C5.00931 19.6465 5.00619 19.455 5.00378 19.2114C4.99897 18.7242 4.99703 18.0296 5.00861 17.2033C5.03181 15.5473 5.10911 13.3773 5.32343 11.2928C5.54074 9.17916 5.88934 7.2616 6.41038 6.04828C6.67644 5.42872 6.9247 5.14519 7.08355 5.04498C7.08456 5.04433 7.08559 5.04369 7.08662 5.04303C7.14764 5.00444 7.23997 4.94604 7.53167 5.10593C9.80451 6.3518 11.5177 7.14012 13.3921 7.60249C15.2612 8.06356 17.2327 8.18606 20 8.18606H21V6.18606H20C17.273 6.18606 15.4983 6.0621 13.8711 5.6607C12.249 5.26059 10.7155 4.5704 8.49302 3.35213C7.66581 2.8987 6.78853 2.86636 6.01643 3.35345C5.34216 3.77882 4.89193 4.51564 4.57266 5.2591C3.92304 6.77184 3.55365 8.95103 3.33392 11.0882C3.1112 13.2544 3.03242 15.4892 3.0088 17.1753C2.99697 18.02 2.99894 18.7308 3.00388 19.2312C3.00635 19.4814 3.00957 19.6793 3.01219 19.8151C3.0135 19.883 3.01466 19.9355 3.01549 19.9713L3.01649 20.0123L3.01685 20.0261C3.01686 20.0264 3.01689 20.0274 4.01652 20L3.01689 20.0274L3.04427 21.027L5.04352 20.9723L5.01614 19.9727Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAnimationOvershoot;\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,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAAuuC,EAAvuC,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,skCAAskC,KAAK,eAAc,CAAI,EAC/uC,EAEc",
  "debugId": "24F89CB00AA4090564756E2164756E21",
  "names": []
}