{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRescueRing/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 IconRescueRing: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconRescueRing\"><Path d=\"M4.25703 5.67114C2.84635 7.39501 2 9.59859 2 11.9998C2 14.4011 2.84638 16.6047 4.2571 18.3286L8.19008 14.3956C7.75292 13.7019 7.5 12.8804 7.5 11.9998C7.5 11.1193 7.7529 10.2979 8.19002 9.60414L4.25703 5.67114Z\" fill=\"currentColor\"/><Path d=\"M5.67188 4.25708L9.60486 8.19007C10.2986 7.75292 11.1201 7.5 12.0006 7.5C12.8812 7.5 13.7027 7.75292 14.3964 8.19008L18.3294 4.2571C16.6055 2.84638 14.4019 2 12.0006 2C9.59935 2 7.39575 2.84638 5.67188 4.25708Z\" fill=\"currentColor\"/><Path d=\"M19.7417 5.67114L15.8087 9.60414C16.2458 10.2979 16.4987 11.1193 16.4987 11.9998C16.4987 12.8804 16.2457 13.7019 15.8086 14.3956L19.7416 18.3286C21.1523 16.6047 21.9987 14.4011 21.9987 11.9998C21.9987 9.59858 21.1523 7.39501 19.7417 5.67114Z\" fill=\"currentColor\"/><Path d=\"M18.3293 19.7428L14.3963 15.8098C13.7025 16.2469 12.8811 16.4998 12.0006 16.4998C11.12 16.4998 10.2986 16.2469 9.60487 15.8098L5.67188 19.7428C7.39574 21.1535 9.59931 21.9998 12.0006 21.9998C14.4018 21.9998 16.6054 21.1535 18.3293 19.7428Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRescueRing;\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,gBAAylC,EAAzlC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qNAAqN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,CAAI,EACjmC,EAEc",
  "debugId": "C3F9B18342F2A3F264756E2164756E21",
  "names": []
}