{
  "version": 3,
  "sources": ["src/IconSunsetArrowDown/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 IconSunsetArrowDown: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconSunsetArrowDown\"><Path d=\"M12 3C12.2761 3 12.5 3.22386 12.5 3.5V7.29289L14.1464 5.64645C14.3417 5.45118 14.6583 5.45118 14.8536 5.64645C15.0488 5.84171 15.0488 6.15829 14.8536 6.35355L12.3536 8.85355C12.1583 9.04882 11.8417 9.04882 11.6464 8.85355L9.14645 6.35355C8.95118 6.15829 8.95118 5.84171 9.14645 5.64645C9.34171 5.45118 9.65829 5.45118 9.85355 5.64645L11.5 7.29289V3.5C11.5 3.22386 11.7239 3 12 3Z\" fill=\"currentColor\"/><Path d=\"M2 19.5C2 19.2239 2.22386 19 2.5 19H21.5C21.7761 19 22 19.2239 22 19.5C22 19.7761 21.7761 20 21.5 20H2.5C2.22386 20 2 19.7761 2 19.5Z\" fill=\"currentColor\"/><Path d=\"M2.5 16C2.22386 16 2 16.2239 2 16.5C2 16.7761 2.22386 17 2.5 17H4.5C4.77614 17 5 16.7761 5 16.5C5 16.2239 4.77614 16 4.5 16H2.5Z\" fill=\"currentColor\"/><Path d=\"M19.5 16C19.2239 16 19 16.2239 19 16.5C19 16.7761 19.2239 17 19.5 17H21.5C21.7761 17 22 16.7761 22 16.5C22 16.2239 21.7761 16 21.5 16H19.5Z\" fill=\"currentColor\"/><Path d=\"M17.3644 11.5005C17.1869 11.2889 17.2145 10.9736 17.426 10.7961L18.9581 9.51049C19.1696 9.33299 19.485 9.36058 19.6625 9.57212C19.84 9.78366 19.8124 10.099 19.6009 10.2765L18.0688 11.5621C17.8572 11.7396 17.5419 11.712 17.3644 11.5005Z\" fill=\"currentColor\"/><Path d=\"M5.04318 9.51049C4.83164 9.33299 4.51626 9.36058 4.33876 9.57212C4.16126 9.78365 4.18885 10.099 4.40039 10.2765L5.93248 11.5621C6.14402 11.7396 6.45939 11.712 6.6369 11.5005C6.8144 11.2889 6.7868 10.9736 6.57527 10.7961L5.04318 9.51049Z\" fill=\"currentColor\"/><Path d=\"M16.5 17C16.7761 17 17 16.7761 17 16.5V16C17 13.2386 14.7614 11 12 11C9.23858 11 7 13.2386 7 16V16.5C7 16.7761 7.22386 17 7.5 17C8.38727 17 15.6127 17 16.5 17Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSunsetArrowDown;\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,EAAwE,EAAM,KAAK,CAAC,IACxF,gBAA2rD,EAA3rD,IAAqB,EAAO,OAAO,sDAAqD,gBAAC,EAAD,CAAM,EAAE,8XAA8X,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wIAAwI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+OAA+O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kKAAkK,KAAK,eAAc,CAAI,CACnsD,EAEc",
  "debugId": "D35A58A15308294064756E2164756E21",
  "names": []
}