{
  "version": 3,
  "sources": ["src/IconTactics1/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconTactics1\"><Path d=\"M16.5274 3.08398C16.4171 3.01042 16.282 2.98371 16.152 3.00971C16.022 3.03572 15.9076 3.11231 15.834 3.22265L13.709 6.41015C13.5559 6.63991 13.6179 6.95035 13.8477 7.10353C14.0775 7.2567 14.3879 7.19461 14.5411 6.96485L16.004 4.77041C16.5007 6.8232 15.905 8.58528 14.9685 9.99705C13.9322 11.5594 12.4931 12.6642 11.7227 13.1777C11.4929 13.3309 11.4309 13.6413 11.584 13.8711C11.7372 14.1009 12.0476 14.163 12.2774 14.0098C13.1008 13.4609 14.6617 12.2687 15.8019 10.5498C16.8413 8.98286 17.5427 6.95543 16.9902 4.59439L19.1602 6.04104C19.39 6.19421 19.7004 6.13213 19.8536 5.90236C20.0068 5.6726 19.9447 5.36216 19.7149 5.20899L16.5274 3.08398Z\" fill=\"currentColor\"/><Path d=\"M3.85355 5.27145C3.65829 5.07618 3.34171 5.07618 3.14645 5.27145C2.95118 5.46671 2.95118 5.78329 3.14645 5.97855L4.91789 7.75L3.14645 9.52144C2.95118 9.71671 2.95118 10.0333 3.14645 10.2286C3.34171 10.4238 3.65829 10.4238 3.85355 10.2286L5.625 8.4571L7.39645 10.2286C7.59171 10.4238 7.90829 10.4238 8.10355 10.2286C8.29882 10.0333 8.29882 9.71671 8.10355 9.52144L6.33211 7.75L8.10355 5.97855C8.29882 5.78329 8.29882 5.46671 8.10355 5.27145C7.90829 5.07618 7.59171 5.07618 7.39645 5.27145L5.625 7.04289L3.85355 5.27145Z\" fill=\"currentColor\"/><Path d=\"M6.15625 14.6875C4.4131 14.6875 3 16.1006 3 17.8437C3 19.5869 4.4131 21 6.15625 21C7.8994 21 9.3125 19.5869 9.3125 17.8437C9.3125 16.1006 7.8994 14.6875 6.15625 14.6875Z\" fill=\"currentColor\"/><Path d=\"M15.8964 15.8964C15.7012 16.0917 15.7012 16.4083 15.8964 16.6036L17.6679 18.375L15.8964 20.1464C15.7012 20.3417 15.7012 20.6583 15.8964 20.8535C16.0917 21.0488 16.4083 21.0488 16.6036 20.8535L18.375 19.0821L20.1464 20.8535C20.3417 21.0488 20.6583 21.0488 20.8536 20.8535C21.0488 20.6583 21.0488 20.3417 20.8536 20.1464L19.0821 18.375L20.8536 16.6036C21.0488 16.4083 21.0488 16.0917 20.8536 15.8964C20.6583 15.7012 20.3417 15.7012 20.1464 15.8964L18.375 17.6679L16.6036 15.8964C16.4083 15.7012 16.0917 15.7012 15.8964 15.8964Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTactics1;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAAkhE,EAAlhE,IAAqB,EAAO,OAAO,+CAA8C,gBAAC,EAAD,CAAM,EAAE,soBAAsoB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ygBAAygB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ghBAAghB,KAAK,eAAc,CAAI,CAC1hE,EAEc",
  "debugId": "7A24F48E5FA660E564756E2164756E21",
  "names": []
}