{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconInjection/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 IconInjection: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"injection\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.2196 2.21978C17.4942 1.94531 17.9289 1.92775 18.2235 2.16802L18.2801 2.21978L21.7801 5.71978L21.8319 5.77642C22.0721 6.07095 22.0546 6.50572 21.7801 6.78033C21.5055 7.05492 21.0708 7.07236 20.7762 6.83209L20.7196 6.78033L19.4998 5.5606L17.5604 7.50005L20.7801 10.7198L20.8319 10.7764C21.0721 11.071 21.0546 11.5057 20.7801 11.7803C20.5055 12.0549 20.0708 12.0724 19.7762 11.8321L19.7196 11.7803L18.577 10.6377L9.93441 19.2803C9.64152 19.5732 9.16578 19.5732 8.87289 19.2803L7.32601 17.7335L3.53011 21.5303C3.23728 21.8229 2.76241 21.8229 2.46956 21.5303C2.17674 21.2375 2.17688 20.7627 2.46956 20.4698L6.26546 16.6729L4.71956 15.127C4.57891 14.9864 4.49984 14.7947 4.49984 14.5958C4.49999 14.397 4.57905 14.206 4.71956 14.0655L13.3621 5.42291L12.2196 4.28033L12.1678 4.22369C11.9275 3.92911 11.945 3.49438 12.2196 3.21978C12.4942 2.94531 12.9289 2.92775 13.2235 3.16802L13.2801 3.21978L16.4998 6.43951L18.4393 4.50005L17.2196 3.28033L17.1678 3.22369C16.9275 2.92911 16.945 2.49438 17.2196 2.21978Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconInjection;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAmmC,EAAnmC,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4+BAA4+B,KAAK,eAAc,CAAI,GAG7lC",
  "debugId": "ED63F260A03E226E64756E2164756E21",
  "names": []
}