{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTactics1/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 IconTactics1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTactics1\"><Path d=\"M15.7227 2.61328L12.6133 7.27738L14.2774 8.38678L15.5252 6.51504C15.8932 8.02402 15.3856 9.20028 14.5756 10.1724C13.7367 11.1789 12.6315 11.8962 11.8189 12.4235C11.6857 12.51 11.5604 12.5913 11.4453 12.668L10.6133 13.2227L11.7227 14.8868L12.5547 14.3321C12.644 14.2726 12.75 14.2042 12.8696 14.1272C13.665 13.6146 15.0591 12.7162 16.112 11.4527C17.2027 10.1439 17.9811 8.38121 17.5071 6.20662L19.2774 7.38679L20.3868 5.7227L15.7227 2.61328Z\" fill=\"currentColor\"/><Path d=\"M4.00015 4.58569L2.58594 5.99991L4.58594 7.99991L2.58594 9.99991L4.00015 11.4141L6.00015 9.41412L8.00015 11.4141L9.41436 9.99991L7.41436 7.99991L9.41436 5.99991L8.00015 4.58569L6.00015 6.58569L4.00015 4.58569Z\" fill=\"currentColor\"/><Path d=\"M6.5 14C4.567 14 3 15.567 3 17.5C3 19.433 4.567 21 6.5 21C8.433 21 10 19.433 10 17.5C10 15.567 8.433 14 6.5 14Z\" fill=\"currentColor\"/><Path d=\"M16.0002 14.5857L14.5859 15.9999L16.5859 17.9999L14.5859 19.9999L16.0002 21.4141L18.0002 19.4141L20.0002 21.4141L21.4144 19.9999L19.4144 17.9999L21.4144 15.9999L20.0002 14.5857L18.0002 16.5857L16.0002 14.5857Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTactics1;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAA6pC,EAA7pC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,2bAA2b,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,CAAI,EACrqC,EAEc",
  "debugId": "8AE7D463282EE2E864756E2164756E21",
  "names": []
}