{
  "version": 3,
  "sources": ["src/IconSunHigh/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { ClipPath, Defs, G, Path, Rect } from \"react-native-svg\";\n\nexport const IconSunHigh: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSunHigh\"><G ClipPath=\"url(#clip0_14944_27811)\"><Path d=\"M12 20C12.2761 20 12.5 20.2239 12.5 20.5V23.5C12.5 23.7761 12.2761 24 12 24C11.7239 24 11.5 23.7761 11.5 23.5V20.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.53803 17.8525 6.53804 18.169 6.34277 18.3643L4.22168 20.4854C4.02641 20.6805 3.70987 20.6806 3.51465 20.4854C3.31942 20.2901 3.31949 19.9736 3.51465 19.7783L5.63574 17.6572Z\" fill=\"currentColor\"/><Path d=\"M17.6572 17.6572C17.8525 17.462 18.169 17.462 18.3643 17.6572L20.4854 19.7783C20.6805 19.9736 20.6806 20.2901 20.4854 20.4854C20.2901 20.6806 19.9736 20.6805 19.7783 20.4854L17.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.5H0.5C0.223858 12.5 7.71345e-08 12.2761 0 12C9.53672e-07 11.7239 0.223858 11.5 0.5 11.5H3.5Z\" fill=\"currentColor\"/><Path d=\"M23.5 11.5C23.7761 11.5 24 11.7239 24 12C24 12.2761 23.7761 12.5 23.5 12.5H20.5C20.2239 12.5 20 12.2761 20 12C20 11.7239 20.2239 11.5 20.5 11.5H23.5Z\" fill=\"currentColor\"/><Path d=\"M3.51465 3.51465C3.70987 3.31942 4.02641 3.31949 4.22168 3.51465L6.34277 5.63574C6.53804 5.831 6.53804 6.14751 6.34277 6.34277C6.14751 6.53804 5.831 6.53804 5.63574 6.34277L3.51465 4.22168C3.31949 4.02641 3.31942 3.70987 3.51465 3.51465Z\" fill=\"currentColor\"/><Path d=\"M19.7783 3.51465C19.9736 3.31949 20.2901 3.31942 20.4854 3.51465C20.6806 3.70987 20.6805 4.02641 20.4854 4.22168L18.3643 6.34277C18.169 6.53804 17.8525 6.53803 17.6572 6.34277C17.462 6.14751 17.462 5.831 17.6572 5.63574L19.7783 3.51465Z\" fill=\"currentColor\"/><Path d=\"M12 0C12.2761 0 12.5 0.223858 12.5 0.5V3.5C12.5 3.77614 12.2761 4 12 4C11.7239 4 11.5 3.77614 11.5 3.5V0.5C11.5 0.223858 11.7239 0 12 0Z\" fill=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_14944_27811\"><Rect width=\"24\" height=\"24\" fill=\"white\"/></ClipPath></Defs></CentralIconBase>;\n});\n\nexport default IconSunHigh;\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,mBAAS,UAAU,OAAM,UAAG,UAAM,yBAE3B,IAAM,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA6sE,EAA7sE,IAAqB,EAAO,OAAO,8CAA6C,gBAAqhE,EAArhE,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yKAAyK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2IAA2I,KAAK,eAAc,CAAI,EAAE,gBAA+F,EAA/F,KAAM,gBAA8E,EAA9E,CAAU,GAAG,qBAAoB,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,CACrtE,EAEc",
  "debugId": "C6FA2A0BB235772F64756E2164756E21",
  "names": []
}