{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNuclearPowerPlant/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 IconNuclearPowerPlant: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"nuclear-power-plant, radiation\"><path d=\"M9 20.25H2.75C4.84768 14.25 5.40756 10.0642 5.89652 3.75H16.8849C17.0943 6.45374 17.3167 8.76723 17.6672 11\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M8.75 17C8.75 13.4363 11.4363 10.75 15 10.75C18.5637 10.75 21.25 13.4363 21.25 17V20.25H8.75V17Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M9 16.25H21\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconNuclearPowerPlant;\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,EAAwD,CAAC,IAAU,CAC9E,OAAO,gBAAggB,EAAhgB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,8GAA8G,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAG1f",
  "debugId": "980582B69BDB1C0164756E2164756E21",
  "names": []
}