{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPipe/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 IconPipe: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"pipe, super mario, vpn\"><path d=\"M9 19.5H10.5V11.5H19V19.5H21C21.4142 19.5 21.75 19.8358 21.75 20.25C21.75 20.6642 21.4142 21 21 21H3C2.58579 21 2.25 20.6642 2.25 20.25C2.25001 19.8358 2.58579 19.5 3 19.5H5V11.5H9V19.5Z\" fill=\"currentColor\"/><path d=\"M7 10H6.15039C5.74273 10 5.39127 10.0011 5.10352 9.97755C4.80708 9.95332 4.51223 9.89944 4.22852 9.75489C3.80515 9.53918 3.46083 9.19485 3.24512 8.77149C3.10057 8.48778 3.04669 8.19292 3.02246 7.89649C2.99895 7.60874 3 7.25727 3 6.84962V6.1504C3 5.74274 2.99895 5.39127 3.02246 5.10352C3.04669 4.80709 3.10057 4.51223 3.24512 4.22852C3.46083 3.80516 3.80515 3.46084 4.22852 3.24512C4.51223 3.10058 4.80708 3.0467 5.10352 3.02247C5.39127 2.99896 5.74273 3.00001 6.15039 3.00001H7V10Z\" fill=\"currentColor\"/><path d=\"M17.8496 3.00001C18.2573 3.00001 18.6087 2.99896 18.8965 3.02247C19.1929 3.0467 19.4878 3.10058 19.7715 3.24512C20.1948 3.46084 20.5392 3.80516 20.7549 4.22852C20.8994 4.51223 20.9533 4.80709 20.9775 5.10352C21.001 5.39127 21 5.74274 21 6.1504V6.84962C21 7.25727 21.001 7.60874 20.9775 7.89649C20.9533 8.19292 20.8994 8.48778 20.7549 8.77149C20.5392 9.19485 20.1948 9.53918 19.7715 9.75489C19.4878 9.89944 19.1929 9.95331 18.8965 9.97755C18.6087 10.0011 18.2573 10 17.8496 10H8.5V3.00001H17.8496Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPipe;\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,gBAA6yC,EAA7yC,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qeAAqe,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAGvyC",
  "debugId": "D757C2011894CD0F64756E2164756E21",
  "names": []
}