{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconServer/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 IconServer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"server, data, storage\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 8C2 5.79086 3.79086 4 6 4H18C20.2091 4 22 5.79086 22 8V11.25H2V8ZM6.25 7.5C6.25 7.91421 5.91421 8.25 5.5 8.25C5.08579 8.25 4.75 7.91421 4.75 7.5C4.75 7.08579 5.08579 6.75 5.5 6.75C5.91421 6.75 6.25 7.08579 6.25 7.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12.75H22V16C22 18.2091 20.2091 20 18 20H6C3.79086 20 2 18.2091 2 16V12.75ZM6.25 16.5C6.25 16.9142 5.91421 17.25 5.5 17.25C5.08579 17.25 4.75 16.9142 4.75 16.5C4.75 16.0858 5.08579 15.75 5.5 15.75C5.91421 15.75 6.25 16.0858 6.25 16.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconServer;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAkpB,EAAlpB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6NAA6N,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+OAA+O,KAAK,eAAc,CAAI,GAG5oB",
  "debugId": "A200E286D1F27C5664756E2164756E21",
  "names": []
}