{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconGas/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 IconGas: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"gas\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H14.25C14.6642 3 15 3.33579 15 3.75V9H17.75C18.1642 9 18.5 9.33579 18.5 9.75V16.5H20.5V8.33402L18.2483 6.30747C17.9404 6.03038 17.9154 5.55616 18.1925 5.24828C18.4696 4.94039 18.9438 4.91544 19.2517 5.19253L21.7517 7.44253C21.9098 7.58476 22 7.78738 22 8V17.25C22 17.6642 21.6642 18 21.25 18H17.75C17.3358 18 17 17.6642 17 17.25V10.5H15V19.5H15.25C15.6642 19.5 16 19.8358 16 20.25C16 20.6642 15.6642 21 15.25 21H2.75C2.33579 21 2 20.6642 2 20.25C2 19.8358 2.33579 19.5 2.75 19.5H3V3.75ZM6 9.75C6 9.33579 6.33579 9 6.75 9H11.25C11.6642 9 12 9.33579 12 9.75C12 10.1642 11.6642 10.5 11.25 10.5H6.75C6.33579 10.5 6 10.1642 6 9.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconGas;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAwwB,EAAxwB,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,upBAAupB,KAAK,eAAc,CAAI,GAGlwB",
  "debugId": "CB7437F2CA41A87C64756E2164756E21",
  "names": []
}