{"version":3,"sources":["../src/IconSunrise/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSunrise: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"sunrise\">\n      <path d=\"M12.75 4.52941V2H11.25V4.52941H12.75Z\" fill=\"currentColor\" />\n      <path\n        d=\"M7.24737 6.19232L5.4608 4.40291L4.3993 5.46273L6.18587 7.25213L7.24737 6.19232Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M17.8142 7.25213L19.6008 5.46273L18.5393 4.40291L16.7527 6.19232L17.8142 7.25213Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M4.52778 11.5H2V13H4.52778V11.5Z\" fill=\"currentColor\" />\n      <path d=\"M22 11.5H19.4722V13H22V11.5Z\" fill=\"currentColor\" />\n      <path d=\"M22 17V15.5H2V17H22Z\" fill=\"currentColor\" />\n      <path d=\"M18 21V19.5H6V21H18Z\" fill=\"currentColor\" />\n      <path\n        d=\"M17 13V12.0068C17 9.24272 14.7625 7 12 7C9.23745 7 7 9.24272 7 12.0068V13C10.2377 13 13.7623 13 17 13Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconSunrise;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,WACpCC,EAAA,cAAC,QAAK,EAAE,wCAAwC,KAAK,eAAe,EACpEA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,mCAAmC,KAAK,eAAe,EAC/DA,EAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3DA,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QAAK,EAAE,uBAAuB,KAAK,eAAe,EACnDA,EAAA,cAAC,QACC,EAAE,yGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSunrise","props","React","CentralIconBase","IconSunrise_default"]}