{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSunLow/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\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  ...props\n}) => {\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      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSunLow: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sun-low, light-mode, day, today\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.7123 8.28769C17.7626 10.3379 17.7626 13.6621 15.7123 15.7123C13.6621 17.7626 10.3379 17.7626 8.28769 15.7123C6.23744 13.6621 6.23744 10.3379 8.28769 8.28769C10.3379 6.23744 13.6621 6.23744 15.7123 8.28769Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M12 3.25V3M12 21V20.75M20.75 12L21 12M3 12H3.25M5.81282 5.81282L5.63604 5.63604M18.364 18.364L18.1872 18.1872M18.1872 5.81282L18.364 5.63604M5.63605 18.364L5.81282 18.1872\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconSunLow;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAkoB,EAAloB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oNAAoN,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAG5nB",
  "debugId": "4C428DEB6ADEE3DC64756E2164756E21",
  "names": []
}