{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBomb/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 IconBomb: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bomb, boom\"><path d=\"M16.75 1C17.1642 1 17.5 1.33579 17.5 1.75V3.25C17.5 3.66421 17.1642 4 16.75 4C16.3358 4 16 3.66421 16 3.25V1.75C16 1.33579 16.3358 1 16.75 1Z\" fill=\"currentColor\"/><path d=\"M18.0303 5.96967C18.3232 6.26256 18.3232 6.73744 18.0303 7.03033L16.1624 8.89824C17.3101 10.283 18 12.0609 18 14C18 18.4183 14.4183 22 10 22C5.58172 22 2 18.4183 2 14C2 9.58172 5.58172 6 10 6C11.9391 6 13.717 6.68988 15.1018 7.83758L16.9697 5.96967C17.2626 5.67678 17.7374 5.67678 18.0303 5.96967Z\" fill=\"currentColor\"/><path d=\"M20.75 6.5C20.3358 6.5 20 6.83579 20 7.25C20 7.66421 20.3358 8 20.75 8H22.25C22.6642 8 23 7.66421 23 7.25C23 6.83579 22.6642 6.5 22.25 6.5H20.75Z\" fill=\"currentColor\"/><path d=\"M21.7803 2.21967C22.0732 2.51256 22.0732 2.98744 21.7803 3.28033L20.5303 4.53033C20.2374 4.82322 19.7626 4.82322 19.4697 4.53033C19.1768 4.23744 19.1768 3.76256 19.4697 3.46967L20.7197 2.21967C21.0126 1.92678 21.4874 1.92678 21.7803 2.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBomb;\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,gBAA6+B,EAA7+B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4SAA4S,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,CAAI,GAGv+B",
  "debugId": "6D9FD05C0C2C064B64756E2164756E21",
  "names": []
}