{
  "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.4469 3.02643C14.8465 3.13542 15.0821 3.54772 14.9731 3.94734L10.4731 20.4473C10.3641 20.847 9.95183 21.0826 9.55221 20.9736C9.15259 20.8646 8.91699 20.4523 9.02597 20.0527L13.526 3.55267C13.635 3.15305 14.0473 2.91745 14.4469 3.02643ZM6.27988 7.21967C6.57277 7.51257 6.57277 7.98744 6.27988 8.28033L4.15119 10.409C3.27252 11.2877 3.27252 12.7123 4.1512 13.591L6.27988 15.7197C6.57277 16.0126 6.57277 16.4874 6.27988 16.7803C5.98699 17.0732 5.51211 17.0732 5.21922 16.7803L3.09054 14.6517C1.62607 13.1872 1.62607 10.8128 3.09053 9.34837L5.21922 7.21968C5.51211 6.92678 5.98698 6.92678 6.27988 7.21967ZM17.7192 7.21967C18.0121 6.92678 18.487 6.92678 18.7799 7.21968L20.9086 9.34837C22.373 10.8128 22.373 13.1872 20.9086 14.6517L18.7799 16.7803C18.487 17.0732 18.0121 17.0732 17.7192 16.7803C17.4263 16.4874 17.4263 16.0126 17.7192 15.7197L19.8479 13.591C20.7266 12.7123 20.7266 11.2877 19.8479 10.409L17.7192 8.28033C17.4263 7.98744 17.4263 7.51257 17.7192 7.21967Z\" 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,gBAAqkC,EAArkC,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,08BAA08B,KAAK,eAAc,CAAI,GAG/jC",
  "debugId": "8F6A7F8E15B384B164756E2164756E21",
  "names": []
}