{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeLarge/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 IconCodeLarge: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-large, syntax, brackets\"><path d=\"M7.71967 5.21967C8.01256 4.92678 8.48732 4.92678 8.78022 5.21967C9.07305 5.51257 9.07309 5.98734 8.78022 6.28022L3.06049 11.9999L8.78022 17.7197C9.07305 18.0126 9.07309 18.4873 8.78022 18.7802C8.48734 19.0731 8.01257 19.0731 7.71967 18.7802L1.46967 12.5302C1.17678 12.2373 1.17678 11.7626 1.46967 11.4697L7.71967 5.21967Z\" fill=\"currentColor\"/><path d=\"M15.2197 5.21967C15.5126 4.92678 15.9873 4.92678 16.2802 5.21967L22.5302 11.4697C22.8231 11.7626 22.8231 12.2373 22.5302 12.5302L16.2802 18.7802C15.9873 19.0731 15.5126 19.0731 15.2197 18.7802C14.9268 18.4873 14.9268 18.0126 15.2197 17.7197L20.9394 11.9999L15.2197 6.28022C14.9268 5.98732 14.9268 5.51256 15.2197 5.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeLarge;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAywB,EAAzwB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,oUAAoU,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oUAAoU,KAAK,eAAc,CAAI,GAGnwB",
  "debugId": "182E61CBF85264FF64756E2164756E21",
  "names": []
}