{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconH1/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 IconH1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"h1, heading, headline\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.75 4C3.16421 4 3.5 4.33579 3.5 4.75V11.25H12.5V4.75C12.5 4.33579 12.8358 4 13.25 4C13.6642 4 14 4.33579 14 4.75V19.25C14 19.6642 13.6642 20 13.25 20C12.8358 20 12.5 19.6642 12.5 19.25V12.75H3.5V19.25C3.5 19.6642 3.16421 20 2.75 20C2.33579 20 2 19.6642 2 19.25V4.75C2 4.33579 2.33579 4 2.75 4Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.5656 10.0696C21.8305 10.1925 22 10.458 22 10.75V19.25C22 19.6642 21.6642 20 21.25 20C20.8358 20 20.5 19.6642 20.5 19.25V12.3671L18.4845 14.0725C18.1683 14.3401 17.695 14.3007 17.4275 13.9845C17.1599 13.6683 17.1994 13.195 17.5156 12.9275L20.7656 10.1775C20.9885 9.98883 21.3007 9.94675 21.5656 10.0696Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconH1;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAqyB,EAAryB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0SAA0S,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qTAAqT,KAAK,eAAc,CAAI,GAG/xB",
  "debugId": "65FBC4537F8294C364756E2164756E21",
  "names": []
}