{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconConsoleSimple/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 IconConsoleSimple: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"console-simple\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.21967 6.21967C4.51256 5.92678 4.98744 5.92678 5.28033 6.21967L10.5303 11.4697C10.8232 11.7626 10.8232 12.2374 10.5303 12.5303L5.28033 17.7803C4.98744 18.0732 4.51256 18.0732 4.21967 17.7803C3.92678 17.4874 3.92678 17.0126 4.21967 16.7197L8.93934 12L4.21967 7.28033C3.92678 6.98744 3.92678 6.51256 4.21967 6.21967ZM19.25 18H12.75C12.3358 18 12 17.6642 12 17.25C12 16.8358 12.3358 16.5 12.75 16.5H19.25C19.6642 16.5 20 16.8358 20 17.25C20 17.6642 19.6642 18 19.25 18Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconConsoleSimple;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAmlB,EAAnlB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,udAAud,KAAK,eAAc,CAAI,GAG7kB",
  "debugId": "0A802EB1F2AE33F564756E2164756E21",
  "names": []
}