{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimatePath/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 IconAnimatePath: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconAnimatePath\"><Path d=\"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAnimatePath;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAs2B,EAAt2B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,kvBAAkvB,KAAK,eAAc,CAAI,EAC92B,EAEc",
  "debugId": "03E3045F68A80E4B64756E2164756E21",
  "names": []
}