{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimationUndershoot/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 IconAnimationUndershoot: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAnimationUndershoot\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.77771 19.9735C8.25928 20.562 7.5635 21 6.66693 21C5.86528 21 5.20912 20.7047 4.71343 20.2023C4.25001 19.7327 3.97258 19.1292 3.78491 18.5662C3.59515 17.9969 3.46814 17.3757 3.35998 16.8141C3.34211 16.7213 3.32478 16.6304 3.30778 16.5411C3.21735 16.0664 3.13643 15.6416 3.03403 15.2577L2.77637 14.2914L4.70884 13.7761L4.9665 14.7423C5.08935 15.203 5.1861 15.7121 5.27585 16.1842C5.29205 16.2695 5.30803 16.3535 5.32389 16.4359C5.43239 16.9993 5.53872 17.5031 5.68228 17.9338C5.82795 18.3708 5.98385 18.6423 6.1371 18.7977C6.25807 18.9203 6.40192 19 6.66693 19C6.83703 19 7.02458 18.938 7.27699 18.6515C7.55125 18.3401 7.82993 17.8384 8.12537 17.1198C8.41653 16.4116 8.69276 15.5731 8.99637 14.6308C9.02635 14.5378 9.05656 14.4438 9.08705 14.349C9.36126 13.4964 9.65714 12.5764 9.99472 11.6557C10.741 9.62033 11.7307 7.46433 13.2899 5.81338C14.8845 4.12495 17.0429 3 20.0003 3H21.0003V5H20.0003C17.6243 5 15.9827 5.87505 14.7439 7.18662C13.4698 8.53567 12.5928 10.3797 11.8725 12.3443C11.5496 13.2248 11.2662 14.106 10.9904 14.9634C10.9602 15.0573 10.9301 15.1509 10.9 15.2442C10.5994 16.1769 10.3007 17.0884 9.97516 17.8802C9.65394 18.6616 9.27428 19.4099 8.77771 19.9735Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAnimationUndershoot;\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,EAA4E,EAAM,KAAK,CAAC,IAAU,CAC7G,OAAO,gBAA2zC,EAA3zC,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ypCAAypC,KAAK,eAAc,CAAI,EACn0C,EAEc",
  "debugId": "3FBACBE27320C76964756E2164756E21",
  "names": []
}