{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTactics2/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 IconTactics2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconTactics2\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 2.58569L21.4142 5.99991L18 9.41412L16.5858 7.99991L17.5858 6.99991H13V18.9999H8.82929C8.41746 20.1651 7.30622 20.9999 6 20.9999C4.34315 20.9999 3 19.6568 3 17.9999C3 16.3431 4.34315 14.9999 6 14.9999C7.30622 14.9999 8.41746 15.8347 8.82929 16.9999H11V4.99991H17.5858L16.5858 3.99991L18 2.58569ZM4.5 3.08569L6 4.58569L7.5 3.08569L8.91421 4.49991L7.41421 5.99991L8.91421 7.49991L7.5 8.91412L6 7.41412L4.5 8.91412L3.08579 7.49991L4.58579 5.99991L3.08579 4.49991L4.5 3.08569ZM16.5 15.0857L18 16.5857L19.5 15.0857L20.9142 16.4999L19.4142 17.9999L20.9142 19.4999L19.5 20.9141L18 19.4141L16.5 20.9141L15.0858 19.4999L16.5858 17.9999L15.0858 16.4999L16.5 15.0857Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTactics2;\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,gBAA6yB,EAA7yB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,spBAAspB,KAAK,eAAc,CAAI,EACrzB,EAEc",
  "debugId": "E65D4E2E4B6D380264756E2164756E21",
  "names": []
}