{
  "version": 3,
  "sources": ["src/IconSolar/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 IconSolar: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconSolar\"><Path d=\"M15.8929 3.92242C15.9882 3.5193 15.7386 3.11531 15.3355 3.02009H8.66455C8.26143 3.11531 8.01183 3.5193 8.10706 3.92242C8.52378 5.68657 10.1076 7 12 7C13.8924 7 15.4762 5.68657 15.8929 3.92242Z\" fill=\"currentColor\"/><Path d=\"M3.75 3C3.33579 3 3 3.33579 3 3.75C3 4.16422 3.33579 4.5 3.75 4.5H5.25C5.66422 4.5 6 4.16422 6 3.75C6 3.33579 5.66422 3 5.25 3H3.75Z\" fill=\"currentColor\"/><Path d=\"M18.75 3C18.3358 3 18 3.33579 18 3.75C18 4.16422 18.3358 4.5 18.75 4.5H20.25C20.6642 4.5 21 4.16422 21 3.75C21 3.33579 20.6642 3 20.25 3H18.75Z\" fill=\"currentColor\"/><Path d=\"M8.03033 8.53033C8.32323 8.23744 8.32323 7.76257 8.03033 7.46967C7.73744 7.17678 7.26257 7.17678 6.96967 7.46967L5.96967 8.46967C5.67678 8.76257 5.67678 9.23744 5.96967 9.53033C6.26257 9.82323 6.73744 9.82323 7.03033 9.53033L8.03033 8.53033Z\" fill=\"currentColor\"/><Path d=\"M17.0303 7.46967C16.7374 7.17678 16.2626 7.17678 15.9697 7.46967C15.6768 7.76257 15.6768 8.23744 15.9697 8.53033L16.9697 9.53033C17.2626 9.82323 17.7374 9.82323 18.0303 9.53033C18.3232 9.23744 18.3232 8.76257 18.0303 8.46967L17.0303 7.46967Z\" fill=\"currentColor\"/><Path d=\"M12.75 9.75C12.75 9.33579 12.4142 9 12 9C11.5858 9 11.25 9.33579 11.25 9.75V11.25C11.25 11.6642 11.5858 12 12 12C12.4142 12 12.75 11.6642 12.75 11.25V9.75Z\" fill=\"currentColor\"/><Path d=\"M4.80556 15C4.51195 15 4.24535 15.1713 4.12336 15.4384L2.06781 19.9384C1.96175 20.1706 1.98106 20.4407 2.11904 20.6555C2.25703 20.8702 2.49476 21 2.75 21H10.5C10.9142 21 11.25 20.6642 11.25 20.25V15.75C11.25 15.3358 10.9142 15 10.5 15H4.80556Z\" fill=\"currentColor\"/><Path d=\"M13.5 15C13.0858 15 12.75 15.3358 12.75 15.75V20.25C12.75 20.6642 13.0858 21 13.5 21H21.25C21.5052 21 21.743 20.8702 21.881 20.6555C22.0189 20.4407 22.0383 20.1706 21.9322 19.9384L19.8766 15.4384C19.7547 15.1713 19.488 15 19.1944 15H13.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSolar;\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,EAA8D,EAAM,KAAK,CAAC,IAC9E,gBAAm4D,EAAn4D,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,mMAAmM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uIAAuI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kJAAkJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sPAAsP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,CAAI,CAC34D,EAEc",
  "debugId": "98F85876D9F7F61064756E2164756E21",
  "names": []
}