{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLiquidGlass/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 IconLiquidGlass: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconLiquidGlass\"><Path d=\"M16 10.0039C17.1045 10.0139 17.9999 10.9094 18 12.0039V14.5C17.9999 15.6045 17.1045 16.5 16 16.5H10.25C9.97386 16.5 9.75 16.7239 9.75 17C9.74986 17.2412 9.52634 17.4232 9.30859 17.3193C8.68275 17.0206 8.25009 16.3821 8.25 15.6426C8.25015 15.0116 8.76162 14.5002 9.39258 14.5H16V11.0039C16 10.7199 15.8815 10.4633 15.6914 10.2812C15.658 10.2492 15.6367 10.2055 15.6367 10.1592C15.637 10.0735 15.7063 10.0041 15.792 10.0039H16Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 7.81445C20.6111 8.65809 22.5 11.1081 22.5 14C22.5 17.5899 19.5899 20.5 16 20.5H11.5C8.79617 20.5 6.47866 18.8488 5.49902 16.5H1.5V3.5H18V7.81445ZM11.5 9.5C9.01472 9.5 7 11.5147 7 14C7 16.4853 9.01472 18.5 11.5 18.5H16C18.4853 18.5 20.5 16.4853 20.5 14C20.5 11.5147 18.4853 9.5 16 9.5H11.5ZM3.5 14.5H5.02148C5.00892 14.3349 5 14.1683 5 14C5 10.4101 7.91015 7.5 11.5 7.5H16V5.5H3.5V14.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLiquidGlass;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAA2+B,EAA3+B,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,4aAA4a,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wYAAwY,KAAK,eAAc,CAAI,EACn/B,EAEc",
  "debugId": "98A76538C23AE40364756E2164756E21",
  "names": []
}