{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNetify/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 IconNetify: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconNetify\"><Path d=\"M6.94767 18.4848H6.73996L5.70312 17.448V17.2403L7.28816 15.6552H8.38627L8.5327 15.8017V16.8998L6.94767 18.4848ZM5.70312 6.75788V6.55017L6.73996 5.51334H6.94767L8.5327 7.09837V8.19648L8.38627 8.34291H7.28816L5.70312 6.75788Z\" fill=\"currentColor\"/><Path d=\"M14.8303 15.1428H13.3219L13.1959 15.0168V11.4857C13.1959 10.8575 12.949 10.3706 12.1914 10.3536C11.8015 10.3434 11.3555 10.3536 10.8788 10.3723L10.8072 10.4456V15.0151L10.6812 15.1411H9.17286L9.04688 15.0151V8.98316L9.17286 8.85709H12.5676C13.8871 8.85709 14.9563 9.92623 14.9563 11.2457V15.0168L14.8303 15.1428Z\" fill=\"currentColor\"/><Path d=\"M7.15974 12.882H1.12598L1 12.756V11.2441L1.12598 11.1181H7.15974L7.28573 11.2441V12.756L7.15974 12.882ZM22.874 12.882H16.8403L16.7143 12.756V11.2441L16.8403 11.1181H22.874L23 11.2441V12.756L22.874 12.882ZM11.13 6.97248V2.44718L11.256 2.3212H12.7679L12.8938 2.44718V6.97248L12.7679 7.09846H11.256L11.13 6.97248ZM11.13 21.5529V17.0276L11.256 16.9016H12.7679L12.8938 17.0276V21.5529L12.7679 21.6788H11.256L11.13 21.5529Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconNetify;\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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAA0mC,EAA1mC,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,kOAAkO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2TAA2T,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oaAAoa,KAAK,eAAc,CAAI,EAClnC,EAEc",
  "debugId": "216E63D2377FEF9B64756E2164756E21",
  "names": []
}