{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSunHigh/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {children}\n            </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\";\n\nexport const IconSunHigh: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sun-high, light-mode, day, today\" maskId=\"round-filled-radius-0-stroke-1.5-IconSunHigh\"><g clipPath=\"url(#clip0_14944_27776)\"><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_27776\"><rect width=\"24\" height=\"24\" fill=\"white\"/></clipPath></defs></CentralIconBase>;\n});\n\nexport default IconSunHigh;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAgE,EAAM,KAAK,CAAC,IAAU,CACjG,OAAO,gBAAsyE,EAAtyE,IAAqB,EAAO,UAAU,mCAAmC,OAAO,gDAA+C,gBAA+jE,IAA/jE,CAAG,SAAS,2BAA0B,gBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iPAAiP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4MAA4M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0KAA0K,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8OAA8O,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,EAAE,gBAA+F,OAA/F,KAAM,gBAA8E,WAA9E,CAAU,GAAG,qBAAoB,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,QAAO,CAAI,CAAW,CAAO,EAC9yE,EAEc",
  "debugId": "0721D4EE805ED7BC64756E2164756E21",
  "names": []
}