{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTarget2/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 IconTarget2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTarget2\"><Path d=\"M13 1V4.56609C12.6729 4.5225 12.3391 4.5 12 4.5C11.6609 4.5 11.3271 4.5225 11 4.56609V1H13Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11 4.56609C7.65778 5.01139 5.01139 7.65778 4.56609 11H1V13H4.56609C4.77708 14.5836 5.48221 16.011 6.52137 17.122C6.58737 17.1926 6.65472 17.2619 6.72337 17.3298C7.85511 18.4505 9.34192 19.2132 11 19.4342V23H13V19.4339C16.3422 18.9886 18.9889 16.3425 19.4342 13.0003L23 13V11H19.4342C19.2132 9.34192 18.4505 7.85511 17.3298 6.72337C17.2637 6.65653 17.1962 6.59093 17.1276 6.52661C16.0158 5.48458 14.5863 4.77743 13 4.56609V9H11.0003L11 4.56609ZM4.56609 11C4.5225 11.3271 4.5 11.6609 4.5 12C4.5 12.3391 4.5225 12.6729 4.56609 13H9V11.0003L4.56609 11ZM19.4342 11C19.4778 11.327 19.5 11.6611 19.5 12C19.5 12.3391 19.4778 12.6732 19.4342 13.0003L15.0003 13V11.0003L19.4342 11ZM13 15.0003V19.4339C12.6729 19.4775 12.3391 19.5 12 19.5C11.6611 19.5 11.327 19.4778 11 19.4342L11.0003 15.0003H13Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTarget2;\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,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAuiC,EAAviC,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sxBAAsxB,KAAK,eAAc,CAAI,EAC/iC,EAEc",
  "debugId": "0B959A85109EE5A164756E2164756E21",
  "names": []
}