{"version":3,"sources":["../src/IconH2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconH2: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"h2, heading, headline\">\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M3.5 4V11.25H12.5V4H14V20H12.5V12.75H3.5V20H2V4H3.5Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M18.6977 12.1927C18.6185 12.3379 18.562 12.5535 18.5301 12.7765C18.5149 12.8827 18.5072 12.9759 18.5035 13.0415C18.5016 13.0739 18.5007 13.0989 18.5003 13.1143L18.5 13.13C18.5 13.1299 18.5 13.1296 17.75 13.1296C17 13.1296 17 13.1294 17 13.1293L17 13.1267L17 13.1227L17.0001 13.1113L17.0008 13.0752C17.0016 13.0456 17.0031 13.005 17.0059 12.9555C17.0116 12.8571 17.0228 12.7206 17.0452 12.564C17.0878 12.2667 17.1797 11.8288 17.3985 11.4428L17.4048 11.4317L17.4114 11.4208C17.9384 10.5605 18.9092 10 20 10C21.8148 10 23 11.4536 23 13C23 13.6701 22.7507 14.4998 22.2278 15.0554L18.9858 18.5H23V20H17V18.4213L21.1355 14.0273C21.3448 13.805 21.5 13.3708 21.5 13C21.5 12.1992 20.9059 11.5 20 11.5C19.4306 11.5 18.9508 11.7887 18.6977 12.1927Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconH2;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,yBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ouBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconH2","props","React","CentralIconBase","IconH2_default"]}