{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTargetArrow/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 IconTargetArrow: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTargetArrow\"><Path d=\"M19.2907 4.7091L17.9372 0.648438L13.0002 5.58545V9.58545L10.5859 11.9997L12.0002 13.4139L14.4144 10.9997H18.4144L23.3514 6.06265L19.2907 4.7091Z\" fill=\"currentColor\"/><Path d=\"M4 12C4 7.58172 7.58172 4 12 4C12.3012 4 12.5982 4.0166 12.8901 4.04887L13.1099 2.06098C12.7451 2.02066 12.3748 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 11.6252 21.9793 11.2549 21.939 10.8901L19.9511 11.1099C19.9834 11.4018 20 11.6988 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12Z\" fill=\"currentColor\"/><Path d=\"M8 11.9997C8 9.92618 9.57854 8.2201 11.5988 8.01951L11.4012 6.0293C8.36814 6.33044 6 8.88791 6 11.9997C6 15.3134 8.68629 17.9997 12 17.9997C15.1117 17.9997 17.6691 15.6318 17.9704 12.5988L15.9802 12.4011C15.7795 14.4213 14.0735 15.9997 12 15.9997C9.79086 15.9997 8 14.2089 8 11.9997Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTargetArrow;\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,gBAA07B,EAA17B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,mJAAmJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2VAA2V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,CAAI,EACl8B,EAEc",
  "debugId": "3B641896DCF5538A64756E2164756E21",
  "names": []
}