{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEsc/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 IconEsc: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"esc, power\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1C12.4142 1 12.75 1.33579 12.75 1.75V5.75C12.75 6.16421 12.4142 6.5 12 6.5C11.5858 6.5 11.25 6.16421 11.25 5.75V1.75C11.25 1.33579 11.5858 1 12 1ZM8.15497 3.55111C8.35677 3.91284 8.22713 4.36967 7.8654 4.57147C5.25959 6.0252 3.5 8.80764 3.5 12C3.5 16.6945 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6945 20.5 12C20.5 8.82953 18.7645 6.06341 16.1881 4.60155C15.8278 4.39714 15.7015 3.93938 15.9059 3.57912C16.1103 3.21886 16.568 3.09252 16.9283 3.29693C19.9552 5.01436 22 8.26792 22 12C22 17.5229 17.5228 22 12 22C6.47715 22 2 17.5229 2 12C2 8.24212 4.07317 4.96944 7.1346 3.26153C7.49634 3.05973 7.95317 3.18938 8.15497 3.55111Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEsc;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAkvB,EAAlvB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0nBAA0nB,KAAK,eAAc,CAAI,GAG5uB",
  "debugId": "75B84EFB3B9DA8CE64756E2164756E21",
  "names": []
}