{
  "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-1-stroke-1.5-IconSunHigh\"><G ClipPath=\"url(#clip0_14944_27781)\"><Path d=\"M12 20C12.4142 20 12.75 20.3358 12.75 20.75V23.25C12.75 23.6642 12.4142 24 12 24C11.5858 24 11.25 23.6642 11.25 23.25V20.75C11.25 20.3358 11.5858 20 12 20Z\" fill=\"currentColor\"/><Path d=\"M5.28223 17.6572C5.57512 17.3643 6.04988 17.3643 6.34277 17.6572C6.63567 17.9501 6.63567 18.4249 6.34277 18.7178L4.5752 20.4854C4.28229 20.7781 3.8075 20.7782 3.51465 20.4854C3.2218 20.1925 3.22189 19.7177 3.51465 19.4248L5.28223 17.6572Z\" fill=\"currentColor\"/><Path d=\"M17.6572 17.6572C17.9501 17.3643 18.4249 17.3643 18.7178 17.6572L20.4854 19.4248C20.7781 19.7177 20.7782 20.1925 20.4854 20.4854C20.1925 20.7782 19.7177 20.7781 19.4248 20.4854L17.6572 18.7178C17.3643 18.4249 17.3643 17.9501 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.25 11.25C3.66421 11.25 3.99999 11.5858 4 12C4 12.4142 3.66421 12.75 3.25 12.75H0.75C0.335786 12.75 0 12.4142 0 12C5.66941e-06 11.5858 0.33579 11.25 0.75 11.25H3.25Z\" fill=\"currentColor\"/><Path d=\"M23.25 11.25C23.6642 11.25 24 11.5858 24 12C24 12.4142 23.6642 12.75 23.25 12.75H20.75C20.3358 12.75 20 12.4142 20 12C20 11.5858 20.3358 11.25 20.75 11.25H23.25Z\" fill=\"currentColor\"/><Path d=\"M3.51465 3.51465C3.8075 3.2218 4.28229 3.22188 4.5752 3.51465L6.34277 5.28223C6.63567 5.57512 6.63567 6.04988 6.34277 6.34277C6.04988 6.63567 5.57512 6.63567 5.28223 6.34277L3.51465 4.5752C3.22188 4.28229 3.2218 3.8075 3.51465 3.51465Z\" fill=\"currentColor\"/><Path d=\"M19.4248 3.51465C19.7177 3.22189 20.1925 3.22181 20.4854 3.51465C20.7782 3.8075 20.7781 4.28229 20.4854 4.5752L18.7178 6.34277C18.4249 6.63567 17.9501 6.63567 17.6572 6.34277C17.3643 6.04988 17.3643 5.57512 17.6572 5.28223L19.4248 3.51465Z\" fill=\"currentColor\"/><Path d=\"M12 0C12.4142 0 12.75 0.335786 12.75 0.75V3.25C12.75 3.66421 12.4142 4 12 4C11.5858 4 11.25 3.66421 11.25 3.25V0.75C11.25 0.335786 11.5858 0 12 0Z\" fill=\"currentColor\"/></G><Defs><ClipPath id=\"clip0_14944_27781\"><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,gBAAyvE,EAAzvE,IAAqB,EAAO,OAAO,gDAA+C,gBAA+jE,EAA/jE,CAAG,SAAS,2BAA0B,gBAAC,EAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,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,CACjwE,EAEc",
  "debugId": "B39D8EC4411E0AB264756E2164756E21",
  "names": []
}