{"version":3,"sources":["../src/IconDateYearly/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDateYearly: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"date-yearly,fireworks,new-year\">\n      <path d=\"M12.75 1H11.25V7H12.75V1Z\" fill=\"currentColor\" />\n      <path\n        d=\"M7.00003 4.93937L5.93937 6.00003L8.64124 8.7019L9.7019 7.64124L7.00003 4.93937Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M18.0607 6.00006L17.0001 4.9394L14.2982 7.64127L15.3589 8.70193L18.0607 6.00006Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M12 8.75C10.7574 8.75 9.75 9.75736 9.75 11C9.75 12.2426 10.7574 13.25 12 13.25C13.2426 13.25 14.25 12.2426 14.25 11C14.25 9.75736 13.2426 8.75 12 8.75Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M2 10.25V11.75H8V10.25H2Z\" fill=\"currentColor\" />\n      <path d=\"M16 10.25V11.75H22V10.25H16Z\" fill=\"currentColor\" />\n      <path\n        d=\"M15.3588 13.2981L14.2981 14.3588L17 17.0607L18.0607 16L15.3588 13.2981Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M9.14221 14.917L9.70045 14.4162L8.6987 13.2997L8.14047 13.8006C5.98125 15.7379 4.35493 17.5879 3.04997 20.9808L2.78074 21.6808L4.18076 22.2193L4.44999 21.5193C5.64507 18.4121 7.10007 16.7493 9.14221 14.917Z\"\n        fill=\"currentColor\"\n      />\n      <path d=\"M12.75 15H11.25V21H12.75V15Z\" fill=\"currentColor\" />\n    </CentralIconBase>\n  );\n};\n\nexport default IconDateYearly;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,kFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0JACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,EAC3DA,EAAA,cAAC,QACC,EAAE,0EACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iNACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,+BAA+B,KAAK,eAAe,CAC7D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDateYearly","props","React","CentralIconBase","IconDateYearly_default"]}