{
  "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.25 19.8358 2.58579 19.5 3 19.5H5V11.5H9V19.5Z\" fill=\"currentColor\"/><path d=\"M7 10H5.34961C5.08211 10 4.83611 10.0001 4.63184 9.9834C4.41879 9.96597 4.18527 9.92686 3.95508 9.80957C3.62597 9.64182 3.35818 9.37403 3.19043 9.04492C3.07314 8.81473 3.03403 8.58121 3.0166 8.36816C2.99991 8.16389 3 7.91789 3 7.65039V5.34961C3 5.08211 2.99991 4.83611 3.0166 4.63184C3.03403 4.41879 3.07314 4.18527 3.19043 3.95508C3.35818 3.62597 3.62597 3.35818 3.95508 3.19043C4.18527 3.07314 4.41879 3.03403 4.63184 3.0166C4.83611 2.99991 5.08211 3 5.34961 3H7V10Z\" fill=\"currentColor\"/><path d=\"M18.6504 3C18.9179 3 19.1639 2.99991 19.3682 3.0166C19.5812 3.03403 19.8147 3.07314 20.0449 3.19043C20.374 3.35818 20.6418 3.62597 20.8096 3.95508C20.9269 4.18527 20.966 4.41879 20.9834 4.63184C21.0001 4.83611 21 5.08211 21 5.34961V7.65039C21 7.91789 21.0001 8.16389 20.9834 8.36816C20.966 8.58121 20.9269 8.81473 20.8096 9.04492C20.6418 9.37403 20.374 9.64182 20.0449 9.80957C19.8147 9.92686 19.5812 9.96597 19.3682 9.9834C19.1639 10.0001 18.9179 10 18.6504 10H8.5V3H18.6504Z\" 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,gBAAwwC,EAAxwC,IAAqB,EAAO,UAAU,0BAAyB,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,udAAud,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+dAA+d,KAAK,eAAc,CAAI,GAGlwC",
  "debugId": "E31BB339AF9B3B1A64756E2164756E21",
  "names": []
}