{
  "version": 3,
  "sources": ["src/IconSun/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 IconSun: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSun\"><Path d=\"M12.4999 1.5C12.4999 1.22386 12.2761 1 11.9999 1C11.7238 1 11.4999 1.22386 11.4999 1.5V3.5C11.4999 3.77614 11.7238 4 11.9999 4C12.2761 4 12.4999 3.77614 12.4999 3.5V1.5Z\" fill=\"currentColor\"/><Path d=\"M22.5 12.5C22.7761 12.5 23 12.2761 23 12C23 11.7239 22.7761 11.5 22.5 11.5H20.5C20.2239 11.5 20 11.7239 20 12C20 12.2761 20.2239 12.5 20.5 12.5H22.5Z\" fill=\"currentColor\"/><Path d=\"M19.7782 19.7782C19.5829 19.9734 19.2663 19.9734 19.0711 19.7782L17.6569 18.364C17.4616 18.1687 17.4616 17.8521 17.6569 17.6569C17.8521 17.4616 18.1687 17.4616 18.364 17.6569L19.7782 19.0711C19.9734 19.2663 19.9734 19.5829 19.7782 19.7782Z\" fill=\"currentColor\"/><Path d=\"M19.7782 4.92893C19.9734 4.73367 19.9734 4.41709 19.7782 4.22183C19.5829 4.02656 19.2663 4.02656 19.0711 4.22183L17.6569 5.63604C17.4616 5.8313 17.4616 6.14788 17.6569 6.34315C17.8521 6.53841 18.1687 6.53841 18.364 6.34315L19.7782 4.92893Z\" fill=\"currentColor\"/><Path d=\"M11.9999 20C12.2761 20 12.4999 20.2239 12.4999 20.5V22.5C12.4999 22.7762 12.2761 23 11.9999 23C11.7238 23 11.4999 22.7762 11.4999 22.5V20.5C11.4999 20.2239 11.7238 20 11.9999 20Z\" fill=\"currentColor\"/><Path d=\"M3.5 12.5C3.77614 12.5 4 12.2761 4 12C4 11.7239 3.77614 11.5 3.5 11.5H1.5C1.22386 11.5 1 11.7239 1 12C1 12.2761 1.22386 12.5 1.5 12.5H3.5Z\" fill=\"currentColor\"/><Path d=\"M6.34281 6.34315C6.14755 6.53841 5.83097 6.53841 5.6357 6.34315L4.22149 4.92893C4.02623 4.73367 4.02623 4.41709 4.22149 4.22183C4.41675 4.02656 4.73334 4.02656 4.9286 4.22183L6.34281 5.63604C6.53807 5.8313 6.53807 6.14788 6.34281 6.34315Z\" fill=\"currentColor\"/><Path d=\"M6.34281 18.364C6.53807 18.1687 6.53807 17.8521 6.34281 17.6569C6.14755 17.4616 5.83097 17.4616 5.6357 17.6569L4.22149 19.0711C4.02623 19.2663 4.02623 19.5829 4.22149 19.7782C4.41675 19.9734 4.73334 19.9734 4.9286 19.7782L6.34281 18.364Z\" fill=\"currentColor\"/><Path d=\"M16.2426 7.75736C13.8995 5.41421 10.1005 5.41421 7.75736 7.75736C5.41421 10.1005 5.41421 13.8995 7.75736 16.2426C10.1005 18.5858 13.8995 18.5858 16.2426 16.2426C18.5858 13.8995 18.5858 10.1005 16.2426 7.75736Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSun;\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,EAA4D,EAAM,KAAK,CAAC,IAC5E,gBAAknE,EAAlnE,IAAqB,EAAO,OAAO,0CAAyC,gBAAC,EAAD,CAAM,EAAE,4KAA4K,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qLAAqL,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,KAAK,eAAc,CAAI,CAC1nE,EAEc",
  "debugId": "352995CEF8557A0E64756E2164756E21",
  "names": []
}