{"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=\"M6.99816 4.93945L5.9375 6.00011L8.63937 8.70198L9.70003 7.64132L6.99816 4.93945Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M18.0594 6.00011L16.9987 4.93945L14.2969 7.64132L15.3575 8.70198L18.0594 6.00011Z\"\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.3575 13.2981L14.2969 14.3588L16.9988 17.0607L18.0595 16L15.3575 13.2981Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M9.14272 14.9169L9.70096 14.416L8.69922 13.2996L8.14098 13.8004C5.98177 15.7378 4.35544 17.5878 3.05049 20.9807L2.78125 21.6807L4.18127 22.2192L4.4505 21.5192C5.64558 18.412 7.10058 16.7492 9.14272 14.9169Z\"\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,mFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oFACF,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,+EACF,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"]}