{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSunrise/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\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={maskId}\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(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSunrise: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconSunrise\"><Path d=\"M12.5 3.5V3H11.5V3.5H12.5ZM11.5 5.5V6H12.5V5.5H11.5ZM4.55556 13H5.05556V12H4.55556V13ZM2.5 12H2V13H2.5V12ZM19.4444 12H18.9444V13H19.4444V12ZM21.5 13H22V12H21.5V13ZM2.5 16H2V17H2.5V16ZM21.5 17H22V16H21.5V17ZM6.5 19H6V20H6.5V19ZM17.5 20H18V19H17.5V20ZM16.9105 6.88243L16.5569 7.23598L17.264 7.94309L17.6176 7.58954L16.9105 6.88243ZM19.0711 6.13604L19.4246 5.78249L18.7175 5.07538L18.364 5.42893L19.0711 6.13604ZM6.38119 7.58954L6.73475 7.94309L7.44185 7.23598L7.0883 6.88243L6.38119 7.58954ZM5.6348 5.42893L5.28125 5.07538L4.57414 5.78249L4.9277 6.13604L5.6348 5.42893ZM11.5 3.5V5.5H12.5V3.5H11.5ZM4.55556 12H2.5V13H4.55556V12ZM19.4444 13H21.5V12H19.4444V13ZM2.5 17H21.5V16H2.5V17ZM6.5 20H17.5V19H6.5V20ZM17.6176 7.58954L19.0711 6.13604L18.364 5.42893L16.9105 6.88243L17.6176 7.58954ZM7.0883 6.88243L5.6348 5.42893L4.9277 6.13604L6.38119 7.58954L7.0883 6.88243ZM8 13C8 10.7909 9.79086 9 12 9V8C9.23858 8 7 10.2386 7 13H8ZM12 9C14.2091 9 16 10.7909 16 13H17C17 10.2386 14.7614 8 12 8V9Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconSunrise;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,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,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAA4kC,EAA5kC,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,09BAA09B,KAAK,eAAc,CAAI,EACplC,EAEc",
  "debugId": "3DF1EA1CD4DE921664756E2164756E21",
  "names": []
}