{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeBrackets/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 IconCodeBrackets: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-brackets\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.4471 3.02643C14.8468 3.13542 15.0824 3.54772 14.9734 3.94734L10.4734 20.4473C10.3644 20.847 9.95208 21.0826 9.55246 20.9736C9.15284 20.8646 8.91724 20.4523 9.02622 20.0527L13.5262 3.55267C13.6352 3.15305 14.0475 2.91745 14.4471 3.02643ZM6.26382 7.20385C6.56545 7.48774 6.57984 7.9624 6.29595 8.26403L2.941 11.8287C2.8504 11.9249 2.8504 12.0751 2.941 12.1714L6.29595 15.736C6.57983 16.0376 6.56545 16.5123 6.26382 16.7962C5.96219 17.08 5.48754 17.0657 5.20365 16.764L1.8487 13.1994C1.2145 12.5256 1.21449 11.4745 1.84869 10.8006L5.20365 7.23598C5.48753 6.93435 5.96219 6.91997 6.26382 7.20385ZM17.7358 7.20385C18.0374 6.91997 18.5121 6.93435 18.7959 7.23598L22.1509 10.8006C22.7851 11.4745 22.7851 12.5256 22.1509 13.1994L18.7959 16.764C18.5121 17.0657 18.0374 17.08 17.7358 16.7962C17.4341 16.5123 17.4198 16.0376 17.7036 15.736L21.0586 12.1714C21.1492 12.0751 21.1492 11.9249 21.0586 11.8287L17.7036 8.26403C17.4198 7.9624 17.4341 7.48774 17.7358 7.20385Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeBrackets;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA8jC,EAA9jC,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m8BAAm8B,KAAK,eAAc,CAAI,GAGxjC",
  "debugId": "99A3464F7AAD956064756E2164756E21",
  "names": []
}