{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconH2/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 IconH2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconH2\"><Path d=\"M17.5 19.5H17V20H17.5V19.5ZM22.5 20H23V19H22.5V20ZM17.5 19.25L17.1325 18.911L17 19.0546V19.25H17.5ZM21.8685 14.5144L21.5128 14.163L21.5068 14.1691L21.501 14.1753L21.8685 14.5144ZM17.8345 11.625L17.4138 11.3547L17.4091 11.362L17.4047 11.3695L17.8345 11.625ZM17.5 19.5V20H22.5V19.5V19H17.5V19.5ZM21.8685 14.5144L21.501 14.1753L17.1325 18.911L17.5 19.25L17.8675 19.589L22.236 14.8534L21.8685 14.5144ZM17.5 19.25H17V19.5H17.5H18V19.25H17.5ZM22.5 12.8824H22C22 13.3269 21.8109 13.8612 21.5128 14.163L21.8685 14.5144L22.2243 14.8657C22.7397 14.3438 23 13.5399 23 12.8824H22.5ZM20 10.5V11C21.2308 11 22 11.9113 22 12.8824H22.5H23C23 11.3681 21.7921 10 20 10V10.5ZM17.5 13.0196C18 13.0196 18 13.0196 18 13.0197C18 13.0198 18 13.0199 18 13.0199C18 13.02 18 13.0201 18 13.0202C18 13.0204 18 13.0205 18 13.0205C18 13.0207 18 13.0206 18 13.0204C18 13.0199 18 13.0186 18 13.0166C18.0001 13.0127 18.0002 13.0058 18.0005 12.9964C18.001 12.9775 18.0021 12.9483 18.0043 12.9108C18.0089 12.8355 18.018 12.729 18.0363 12.6075C18.0744 12.3537 18.1457 12.0798 18.2642 11.8805L17.8345 11.625L17.4047 11.3695C17.1887 11.7327 17.0929 12.156 17.0474 12.4589C17.0238 12.6157 17.012 12.7524 17.0061 12.8507C17.0032 12.9 17.0016 12.9402 17.0008 12.969C17.0004 12.9834 17.0002 12.995 17.0001 13.0035C17.0001 13.0078 17 13.0113 17 13.0139C17 13.0153 17 13.0164 17 13.0174C17 13.0178 17 13.0182 17 13.0186C17 13.0188 17 13.019 17 13.0191C17 13.0192 17 13.0193 17 13.0193C17 13.0194 17 13.0196 17.5 13.0196ZM17.8345 11.625L18.2551 11.8953C18.5905 11.3735 19.2356 11 20 11V10.5V10C18.9137 10 17.943 10.5314 17.4138 11.3547L17.8345 11.625Z\" fill=\"currentColor\"/><Path d=\"M13.5 4.5V12M13.5 12V19.5M13.5 12H2.5M2.5 12V4.5M2.5 12V19.5\" stroke=\"currentColor\" strokeLinecap=\"square\"/></CentralIconBase>;\n});\n\nexport default IconH2;\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,EAA2D,EAAM,KAAK,CAAC,IAAU,CAC5F,OAAO,gBAA0yD,EAA1yD,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,wkDAAwkD,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,cAAc,SAAQ,CAAI,EAClzD,EAEc",
  "debugId": "EB71C8BF164003E564756E2164756E21",
  "names": []
}