{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/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 IconQwik: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"qwik\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAm7B,EAAn7B,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG76B",
  "debugId": "F18CB6466E9BAF5864756E2164756E21",
  "names": []
}