{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCallCancel/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 IconCallCancel: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconCallCancel\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.50008 21.2072L21.2072 3.50008L20.5001 2.79297L10.7784 12.5147C10.0338 11.7104 9.39043 10.811 8.86862 9.83689L10.5477 8.15964L9.40109 3H3.00943L3.002 3.49246C3.00067 3.58068 3 3.66905 3 3.75758C3 6.90523 3.84389 9.8573 5.3181 12.3982C5.98891 13.5545 6.79018 14.6255 7.70181 15.5912L2.79297 20.5001L3.50008 21.2072ZM8.40922 14.8838L10.0708 13.2223C9.17044 12.2551 8.4064 11.1593 7.80919 9.96546L7.64784 9.64291L9.45233 7.84036L8.59891 4H4.00177C4.04382 6.87568 4.8328 9.56909 6.18306 11.8964C6.81019 12.9773 7.55845 13.9793 8.40922 14.8838Z\" fill=\"currentColor\"/><Path d=\"M12.1036 17.8169C11.3134 17.3585 10.5654 16.8353 9.86684 16.2547L9.15691 16.9646C9.91851 17.6045 10.7363 18.1798 11.6018 18.6819C14.1427 20.1561 17.0948 21 20.2424 21H21V14.5989L15.8404 13.4523L14.1631 15.1314C13.4861 14.7687 12.8453 14.3474 12.2473 13.8742L11.5358 14.5857C12.3055 15.2054 13.1426 15.7446 14.0345 16.1908L14.3571 16.3522L16.1596 14.5477L20 15.4011V19.9982C17.1243 19.9562 14.4309 19.1672 12.1036 17.8169Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCallCancel;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAgoC,EAAhoC,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,giBAAgiB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,waAAwa,KAAK,eAAc,CAAI,EACxoC,EAEc",
  "debugId": "1A8941FD50A2D5FE64756E2164756E21",
  "names": []
}