{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLightbulbGlow/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 IconLightbulbGlow: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconLightbulbGlow\"><Path d=\"M12 2C7.58172 2 4 5.58172 4 10C4 12.9113 5.55568 15.4582 7.87631 16.8565C7.9173 16.8812 7.95853 16.9056 8 16.9296V17H16V16.9296C16.0415 16.9056 16.0827 16.8812 16.1237 16.8565C18.4443 15.4582 20 12.9113 20 10C20 5.58172 16.4183 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M12 23C9.79086 23 8 21.2091 8 19H16C16 21.2091 14.2091 23 12 23Z\" fill=\"currentColor\"/><Path d=\"M3.75 13.7314L0.897461 14.6582L0.279297 12.7568L3.13184 11.8291L3.75 13.7314Z\" fill=\"currentColor\"/><Path d=\"M3.75 6.2666L3.13184 8.16895L0.279297 7.24121L0.897461 5.33984L3.75 6.2666Z\" fill=\"currentColor\"/><Path d=\"M23.7227 7.24219L20.8691 8.16895L20.251 6.2666L23.1045 5.33984L23.7227 7.24219Z\" fill=\"currentColor\"/><Path d=\"M23.7227 12.7559L23.1045 14.6582L20.251 13.7314L20.8691 11.8291L23.7227 12.7559Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLightbulbGlow;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAA23B,EAA33B,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mEAAmE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8EAA8E,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mFAAmF,KAAK,eAAc,CAAI,EACn4B,EAEc",
  "debugId": "E5A1BFAFF8D4EF5564756E2164756E21",
  "names": []
}