{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconConsole/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 IconConsole: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"console, terminal\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75ZM6.71967 7.21967C7.01256 6.92678 7.48744 6.92678 7.78033 7.21967L9.53033 8.96967C9.82322 9.26256 9.82322 9.73744 9.53033 10.0303L7.78033 11.7803C7.48744 12.0732 7.01256 12.0732 6.71967 11.7803C6.42678 11.4874 6.42678 11.0126 6.71967 10.7197L7.40901 10.0303C7.7019 9.73744 7.7019 9.26256 7.40901 8.96967L6.71967 8.28033C6.42678 7.98744 6.42678 7.51256 6.71967 7.21967ZM10.75 10.5C10.3358 10.5 10 10.8358 10 11.25C10 11.6642 10.3358 12 10.75 12H12.75C13.1642 12 13.5 11.6642 13.5 11.25C13.5 10.8358 13.1642 10.5 12.75 10.5H10.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconConsole;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAmyB,EAAnyB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oqBAAoqB,KAAK,eAAc,CAAI,GAG7xB",
  "debugId": "93BD17B5FD1B5F1664756E2164756E21",
  "names": []
}