{
  "version": 3,
  "sources": ["src/IconLightbulbGlow/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "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=\"round-filled-radius-2-stroke-1-IconLightbulbGlow\"><Path d=\"M12 2C7.58171 2 3.99999 5.58172 3.99999 10C3.99999 12.8408 5.48104 15.3353 7.71074 16.7541C7.81428 16.82 7.89164 16.9061 7.94017 17H16.0598C16.1083 16.9061 16.1857 16.82 16.2892 16.7541C18.5189 15.3353 20 12.8408 20 10C20 5.58172 16.4183 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M7.99999 19V18H16V19C16 21.2091 14.2091 23 12 23C9.79085 23 7.99999 21.2091 7.99999 19Z\" fill=\"currentColor\"/><Path d=\"M2.96581 12.9346C2.8804 12.6722 2.59842 12.5291 2.33593 12.6143L1.38476 12.9229C1.1222 13.0082 0.978279 13.2902 1.06347 13.5527C1.14878 13.8153 1.43078 13.9592 1.69335 13.874L2.64452 13.5654L2.7373 13.5244C2.93966 13.4097 3.04049 13.1644 2.96581 12.9346Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22.9375 13.5527C23.0228 13.2903 22.8795 13.0084 22.6172 12.9229L21.666 12.6133C21.4034 12.528 21.1215 12.672 21.0361 12.9346C20.9508 13.1971 21.094 13.479 21.3564 13.5645L22.3076 13.873C22.5701 13.9583 22.852 13.8152 22.9375 13.5527ZM21.5117 13.0889L21.3564 13.5645L21.666 12.6133L21.5117 13.0889Z\" fill=\"currentColor\"/><Path d=\"M1.69335 6.12402L1.59472 6.10254C1.36358 6.07641 1.13815 6.21547 1.06347 6.44531C0.988926 6.67506 1.08974 6.91947 1.29198 7.03418L1.38476 7.0752L2.33593 7.38379L2.43456 7.40527C2.66559 7.43136 2.89105 7.29314 2.96581 7.06348C3.04049 6.83363 2.93966 6.58835 2.7373 6.47363L2.64452 6.43262L1.69335 6.12402Z\" fill=\"currentColor\"/><Path d=\"M22.9375 6.44531C22.8628 6.21584 22.6381 6.07767 22.4072 6.10352L22.3076 6.125L21.3564 6.43359C21.094 6.51904 20.9508 6.80094 21.0361 7.06348C21.1108 7.29313 21.3354 7.43211 21.5664 7.40625L21.666 7.38477L22.6172 7.0752C22.8795 6.98968 23.0228 6.70779 22.9375 6.44531Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconLightbulbGlow;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAA8uD,EAA9uD,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,wPAAwP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6SAA6S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,CAAI,CACtvD,EAEc",
  "debugId": "631EB6C9BF544E6F64756E2164756E21",
  "names": []
}