{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicLamp/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 IconMagicLamp: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMagicLamp\"><Path d=\"M23 7C23 11.511 18.523 15.2067 14.3428 15.8867C15.6461 16.7892 16.5 18.2947 16.5 20V21H5.5V20C5.5 18.3643 6.28565 16.9122 7.5 16H7.49121C5.56316 15.9998 4.00021 14.4368 4 12.5088V11C4 10.4477 3.55228 10 3 10C2.44772 10 2 10.4477 2 11C2 11.479 2.16859 11.7545 2.70703 12.293L1.29297 13.707C0.652318 13.0664 0 12.2994 0 11C0 9.34315 1.34315 8 3 8C4.13288 8 5.11746 8.62885 5.62793 9.55566C6.17177 9.21168 6.81732 9.01328 7.50879 9.0166L15 9.05273C19 8.99992 19.5 8 20 7H23Z\" fill=\"currentColor\"/><Path d=\"M12 4.10352C14.2249 4.53666 15.5 6.26807 15.5 8H6.5C6.5 6.2186 7.69061 4.43844 10 4.07031V3H12V4.10352Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMagicLamp;\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,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAmtB,EAAntB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,0dAA0d,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,KAAK,eAAc,CAAI,EAC3tB,EAEc",
  "debugId": "D2332A765A73DCEE64756E2164756E21",
  "names": []
}