{
  "version": 3,
  "sources": ["src/IconFirewall/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 IconFirewall: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconFirewall\"><Path d=\"M3 5.75C3 4.23122 4.23122 3 5.75 3H9.5C10.4665 3 11.25 3.7835 11.25 4.75V6.25C11.25 7.2165 10.4665 8 9.5 8H4.75C3.7835 8 3 7.2165 3 6.25V5.75Z\" fill=\"currentColor\"/><Path d=\"M8 11.25C8 10.2835 8.7835 9.5 9.75 9.5H14.25C15.2165 9.5 16 10.2835 16 11.25V12.75C16 13.7165 15.2165 14.5 14.25 14.5H9.75C8.7835 14.5 8 13.7165 8 12.75V11.25Z\" fill=\"currentColor\"/><Path d=\"M3 11.125C3 10.2275 3.72754 9.5 4.625 9.5C5.52246 9.5 6.25 10.2275 6.25 11.125V12.875C6.25 13.7725 5.52246 14.5 4.625 14.5C3.72754 14.5 3 13.7725 3 12.875V11.125Z\" fill=\"currentColor\"/><Path d=\"M17.7 11.125C17.7 10.2275 18.4275 9.5 19.325 9.5C20.2225 9.5 20.95 10.2275 20.95 11.125V12.875C20.95 13.7725 20.2225 14.5 19.325 14.5C18.4275 14.5 17.7 13.7725 17.7 12.875V11.125Z\" fill=\"currentColor\"/><Path d=\"M12.75 4.75C12.75 3.7835 13.5335 3 14.5 3H18.25C19.7688 3 21 4.23122 21 5.75V6.25C21 7.2165 20.2165 8 19.25 8H14.5C13.5335 8 12.75 7.2165 12.75 6.25V4.75Z\" fill=\"currentColor\"/><Path d=\"M3 17.75C3 16.7835 3.7835 16 4.75 16H9.5C10.4665 16 11.25 16.7835 11.25 17.75V19.25C11.25 20.2165 10.4665 21 9.5 21H5.75C4.23122 21 3 19.7688 3 18.25V17.75Z\" fill=\"currentColor\"/><Path d=\"M12.75 17.75C12.75 16.7835 13.5335 16 14.5 16H19.25C20.2165 16 21 16.7835 21 17.75V18.25C21 19.7688 19.7688 21 18.25 21H14.5C13.5335 21 12.75 20.2165 12.75 19.25V17.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFirewall;\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,gBAAq5C,EAAr5C,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,iJAAiJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sLAAsL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6JAA6J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2KAA2K,KAAK,eAAc,CAAI,CAC75C,EAEc",
  "debugId": "92EB754132664E8964756E2164756E21",
  "names": []
}