{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAlt/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 IconAlt: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"alt\"><path d=\"M8.08203 12.5886H6.66675L7.34741 10.281H7.38062L8.08203 12.5886Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 7.75C2 5.67893 3.67893 4 5.75 4H18.25C20.3211 4 22 5.67893 22 7.75V16.25C22 18.3211 20.3211 20 18.25 20H5.75C3.67893 20 2 18.3211 2 16.25V7.75ZM4.604 14.365C4.604 14.8174 4.89868 15.0913 5.38013 15.0913C5.78687 15.0913 6.01514 14.8838 6.1604 14.3774L6.36377 13.7383H8.41406L8.61743 14.4023C8.75024 14.8921 8.97852 15.0913 9.41846 15.0913C9.86255 15.0913 10.1821 14.7883 10.1821 14.3608C10.1821 14.2031 10.1531 14.062 10.0825 13.8669L8.59253 9.80786C8.36426 9.1853 7.99902 8.91968 7.37231 8.91968C6.77881 8.91968 6.40942 9.19775 6.18945 9.80786L4.71191 13.8669C4.64551 14.0496 4.604 14.2363 4.604 14.365ZM10.9167 14.2031C10.9167 14.7095 11.199 15 11.6804 15H14.3159C14.7268 15 14.9924 14.7759 14.9924 14.3857C14.9924 13.9956 14.7227 13.7715 14.3159 13.7715H12.4399V9.7124C12.4399 9.20605 12.1619 8.91968 11.6804 8.91968C11.199 8.91968 10.9167 9.20605 10.9167 9.7124V14.2031ZM16.3081 14.2986C16.3081 14.8049 16.5862 15.0913 17.0676 15.0913C17.5491 15.0913 17.8271 14.8049 17.8271 14.2986V10.2395H18.8813C19.2839 10.2395 19.5579 10.0154 19.5579 9.62524C19.5579 9.23511 19.2922 9.01099 18.8813 9.01099H15.2581C14.843 9.01099 14.5774 9.23511 14.5774 9.62524C14.5774 10.0154 14.8513 10.2395 15.2581 10.2395H16.3081V14.2986Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAlt;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAw5C,EAAx5C,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,mEAAmE,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,usCAAusC,KAAK,eAAc,CAAI,GAGl5C",
  "debugId": "A18A0C76705A0BBF64756E2164756E21",
  "names": []
}