{
  "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.5-IconLightbulbGlow\"><Path d=\"M11.999 2C7.58019 2 3.99808 5.58212 3.99808 10.0009C3.99808 12.5861 5.22498 14.885 7.12518 16.3465C7.40219 16.5595 7.69361 16.7549 7.99778 16.9308V17H16.0001V16.9308C16.3043 16.7549 16.5957 16.5595 16.8727 16.3465C18.7729 14.885 19.9998 12.5861 19.9998 10.0009C19.9998 5.58212 16.4177 2 11.999 2Z\" fill=\"currentColor\"/><Path d=\"M7.99778 18.9988V18.5H16.0001V18.9988C16.0001 21.2086 14.2088 23 11.999 23C9.78917 23 7.99778 21.2086 7.99778 18.9988Z\" fill=\"currentColor\"/><Path d=\"M3.20316 12.8574C3.07509 12.4638 2.65254 12.2483 2.25882 12.376L1.30765 12.6855C0.913763 12.8135 0.698319 13.236 0.826202 13.6299C0.954183 14.0238 1.37665 14.2392 1.77054 14.1113L2.72171 13.8027C3.11565 13.6747 3.33115 13.2514 3.20316 12.8574Z\" fill=\"currentColor\"/><Path d=\"M21.7432 12.376C21.3493 12.248 20.9259 12.4635 20.7979 12.8574C20.67 13.2513 20.8855 13.6747 21.2793 13.8027L22.2305 14.1113C22.6244 14.2393 23.0478 14.0238 23.1758 13.6299C23.3038 13.236 23.0882 12.8127 22.6944 12.6846L21.7432 12.376Z\" fill=\"currentColor\"/><Path d=\"M1.69632 5.86621C1.3249 5.78612 0.946157 5.99898 0.826202 6.36816C0.706349 6.73732 0.887826 7.13168 1.23538 7.28516L1.30765 7.3125L2.25882 7.62207C2.65254 7.74974 3.07509 7.53423 3.20316 7.14062C3.32312 6.7714 3.14162 6.37613 2.79398 6.22266L2.72171 6.19531L1.77054 5.88672L1.69632 5.86621Z\" fill=\"currentColor\"/><Path d=\"M23.1758 6.36816C23.0478 5.97427 22.6244 5.75873 22.2305 5.88672L21.2793 6.19531C20.8855 6.3233 20.67 6.74676 20.7979 7.14062C20.9259 7.53457 21.3493 7.75007 21.7432 7.62207L22.6944 7.31348C23.0882 7.1854 23.3038 6.76204 23.1758 6.36816Z\" 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,gBAAqqD,EAArqD,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,2SAA2S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yHAAyH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sPAAsP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,CAAI,CAC7qD,EAEc",
  "debugId": "50762EA2FF7EA9B264756E2164756E21",
  "names": []
}