{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPowerPlant/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 IconPowerPlant: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"power-plant, coal, gas, factory\"><path d=\"M8.75 5.25C8.75 4.55964 9.30964 4 10 4H19.25C19.6642 4 20 3.66421 20 3.25C20 2.83579 19.6642 2.5 19.25 2.5H10C8.48122 2.5 7.25 3.73122 7.25 5.25C7.25 5.66421 7.58579 6 8 6C8.41421 6 8.75 5.66421 8.75 5.25Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.17 10.9691C20.0023 10.5331 21 11.1368 21 12.0764V20.2501C21 20.6643 20.6643 21.0001 20.25 21.0001H12.478C12.4392 21.0001 12.401 20.9971 12.3636 20.9914C12.3263 20.9971 12.2883 21 12.25 21H3.75001C3.53039 21 3.32181 20.9037 3.17932 20.7366C3.03682 20.5695 2.97473 20.3484 3.00943 20.1315L4.73998 9.31553C4.95344 7.98143 6.10438 7 7.45544 7H8.54457C9.89563 7 11.0466 7.98143 11.26 9.31553L11.7254 12.2243L13.8893 11.0125C14.7225 10.5459 15.75 11.1481 15.75 12.1031V12.7605L19.17 10.9691ZM6.22114 9.55251C6.31817 8.9461 6.84132 8.5 7.45544 8.5H8.54457C9.15869 8.5 9.68184 8.9461 9.77887 9.55251L11.3705 19.5H4.62954L6.22114 9.55251Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPowerPlant;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAs/B,EAAt/B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4nBAA4nB,KAAK,eAAc,CAAI,GAGh/B",
  "debugId": "B61DC5CBE86D1F7764756E2164756E21",
  "names": []
}