{
  "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-IconSolar\"><Path d=\"M15.501 3H8.50101C8.22487 3 8.00101 3.22386 8.00101 3.5C8.00101 5.70914 9.79187 7.5 12.001 7.5C14.2101 7.5 16.001 5.70914 16.001 3.5C16.001 3.22386 15.7772 3 15.501 3Z\" fill=\"currentColor\"/><Path d=\"M3.50101 3C3.22487 3 3.00101 3.22386 3.00101 3.5C3.00101 3.77614 3.22487 4 3.50101 4H5.50101C5.77715 4 6.00101 3.77614 6.00101 3.5C6.00101 3.22386 5.77715 3 5.50101 3H3.50101Z\" fill=\"currentColor\"/><Path d=\"M18.501 3C18.2249 3 18.001 3.22386 18.001 3.5C18.001 3.77614 18.2249 4 18.501 4H20.501C20.7772 4 21.001 3.77614 21.001 3.5C21.001 3.22386 20.7772 3 20.501 3H18.501Z\" fill=\"currentColor\"/><Path d=\"M7.35456 8.35355C7.54982 8.15829 7.54982 7.84171 7.35456 7.64645C7.1593 7.45119 6.84272 7.45119 6.64746 7.64645L5.14746 9.14645C4.95219 9.34171 4.95219 9.65829 5.14746 9.85355C5.34272 10.0488 5.6593 10.0488 5.85456 9.85355L7.35456 8.35355Z\" fill=\"currentColor\"/><Path d=\"M17.3546 7.64645C17.1593 7.45119 16.8427 7.45119 16.6475 7.64645C16.4522 7.84171 16.4522 8.15829 16.6475 8.35355L18.1475 9.85355C18.3427 10.0488 18.6593 10.0488 18.8546 9.85355C19.0498 9.65829 19.0498 9.34171 18.8546 9.14645L17.3546 7.64645Z\" fill=\"currentColor\"/><Path d=\"M12.501 9.5C12.501 9.22386 12.2772 9 12.001 9C11.7249 9 11.501 9.22386 11.501 9.5V11.5C11.501 11.7761 11.7249 12 12.001 12C12.2772 12 12.501 11.7761 12.501 11.5V9.5Z\" fill=\"currentColor\"/><Path d=\"M5.17804 15C4.56468 15 4.01312 15.3734 3.78533 15.9429L2.58533 18.9429C2.19121 19.9282 2.91684 21 3.97804 21H11.001C11.2771 21 11.501 20.7761 11.501 20.5V15.5C11.501 15.2239 11.2771 15 11.001 15H5.17804Z\" fill=\"currentColor\"/><Path d=\"M13.001 15C12.7248 15 12.501 15.2239 12.501 15.5V20.5C12.501 20.7761 12.7248 21 13.001 21H20.024C21.0852 21 21.8108 19.9282 21.4167 18.9429L20.2167 15.9429C19.9889 15.3734 19.4373 15 18.824 15H13.001Z\" 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,gBAAk2D,EAAl2D,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kLAAkL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uKAAuK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wKAAwK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8MAA8M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,CAAI,CAC12D,EAEc",
  "debugId": "DD276B0BF5E0895964756E2164756E21",
  "names": []
}