{
  "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=\"M5.75001 7C5.38153 7 5.06764 7.26766 5.00943 7.63151L3.00943 20.1315C2.97473 20.3484 3.03682 20.5695 3.17932 20.7366C3.32181 20.9037 3.53039 21 3.75001 21H12.25C12.3155 21 12.38 20.9914 12.4421 20.975C12.5037 20.9913 12.5682 21 12.6345 21H20.25C20.6642 21 21 20.6642 21 20.25V11.5C21 11.2426 20.868 11.0032 20.6504 10.8658C20.4328 10.7284 20.1599 10.7122 19.9276 10.8229L15.75 12.8122V11.5C15.75 11.2411 15.6165 11.0006 15.3969 10.8636C15.1772 10.7266 14.9024 10.7126 14.67 10.8265L11.7321 12.2661L10.9906 7.63151C10.9324 7.26766 10.6185 7 10.25 7H5.75001ZM4.62954 19.5L6.38954 8.5H9.61047L11.3705 19.5H4.62954Z\" 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,gBAAg+B,EAAh+B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,smBAAsmB,KAAK,eAAc,CAAI,GAG19B",
  "debugId": "BCABBA132C93C1BB64756E2164756E21",
  "names": []
}