{
  "version": 3,
  "sources": ["src/IconSunLow/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 IconSunLow: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSunLow\"><Path d=\"M12 20C12.2761 20 12.5 20.2239 12.5 20.5V21C12.5 21.2761 12.2761 21.5 12 21.5C11.7239 21.5 11.5 21.2761 11.5 21V20.5C11.5 20.2239 11.7239 20 12 20Z\" fill=\"currentColor\"/><Path d=\"M5.63574 17.6572C5.831 17.462 6.14751 17.462 6.34277 17.6572C6.53804 17.8525 6.53804 18.169 6.34277 18.3643L5.98926 18.7178C5.79397 18.9127 5.47739 18.9129 5.28223 18.7178C5.08707 18.5226 5.08726 18.206 5.28223 18.0107L5.63574 17.6572Z\" fill=\"currentColor\"/><Path d=\"M17.6572 17.6572C17.8525 17.462 18.169 17.462 18.3643 17.6572L18.7178 18.0107C18.9127 18.206 18.9129 18.5226 18.7178 18.7178C18.5226 18.9129 18.206 18.9127 18.0107 18.7178L17.6572 18.3643C17.462 18.169 17.462 17.8525 17.6572 17.6572Z\" fill=\"currentColor\"/><Path d=\"M7.75781 7.75781C10.101 5.41467 13.899 5.41467 16.2422 7.75781C18.5853 10.101 18.5853 13.899 16.2422 16.2422C13.899 18.5853 10.101 18.5853 7.75781 16.2422C5.41467 13.899 5.41467 10.101 7.75781 7.75781Z\" fill=\"currentColor\"/><Path d=\"M3.5 11.5C3.77614 11.5 3.99999 11.7239 4 12C4 12.2761 3.77614 12.5 3.5 12.5H3C2.72386 12.5 2.5 12.2761 2.5 12C2.50001 11.7239 2.72386 11.5 3 11.5H3.5Z\" fill=\"currentColor\"/><Path d=\"M21 11.5C21.2761 11.5 21.5 11.7239 21.5 12C21.5 12.2761 21.2761 12.5 21 12.5H20.5C20.2239 12.5 20 12.2761 20 12C20 11.7239 20.2239 11.5 20.5 11.5H21Z\" fill=\"currentColor\"/><Path d=\"M5.28223 5.28223C5.47739 5.08706 5.79397 5.08726 5.98926 5.28223L6.34277 5.63574C6.53804 5.831 6.53804 6.14751 6.34277 6.34277C6.14751 6.53804 5.831 6.53804 5.63574 6.34277L5.28223 5.98926C5.08726 5.79397 5.08706 5.47739 5.28223 5.28223Z\" fill=\"currentColor\"/><Path d=\"M18.0107 5.28223C18.206 5.08726 18.5226 5.08707 18.7178 5.28223C18.9129 5.47739 18.9127 5.79397 18.7178 5.98926L18.3643 6.34277C18.169 6.53804 17.8525 6.53804 17.6572 6.34277C17.462 6.14751 17.462 5.831 17.6572 5.63574L18.0107 5.28223Z\" fill=\"currentColor\"/><Path d=\"M12 2.5C12.2761 2.5 12.5 2.72386 12.5 3V3.5C12.5 3.77614 12.2761 4 12 4C11.7239 4 11.5 3.77614 11.5 3.5V3C11.5 2.72386 11.7239 2.5 12 2.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSunLow;\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,EAA+D,EAAM,KAAK,CAAC,IAC/E,gBAA8iE,EAA9iE,IAAqB,EAAO,OAAO,6CAA4C,gBAAC,EAAD,CAAM,EAAE,sJAAsJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4OAA4O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,CAAI,CACtjE,EAEc",
  "debugId": "3F1536D707DEFC4B64756E2164756E21",
  "names": []
}