{
  "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.21979C8.01256 4.9269 8.48732 4.9269 8.78022 5.21979C9.07305 5.51269 9.07309 5.98746 8.78022 6.28034L3.06049 12.0001L8.78022 17.7198C9.07305 18.0127 9.07309 18.4875 8.78022 18.7803C8.48734 19.0732 8.01257 19.0732 7.71967 18.7803L1.46967 12.5303C1.17678 12.2374 1.17678 11.7627 1.46967 11.4698L7.71967 5.21979Z\" fill=\"currentColor\"/><path d=\"M15.2197 5.21979C15.5126 4.9269 15.9873 4.9269 16.2802 5.21979L22.5302 11.4698C22.8231 11.7627 22.8231 12.2375 22.5302 12.5303L16.2802 18.7803C15.9873 19.0732 15.5126 19.0732 15.2197 18.7803C14.9268 18.4874 14.9268 18.0127 15.2197 17.7198L20.9394 12.0001L15.2197 6.28034C14.9268 5.98745 14.9268 5.51269 15.2197 5.21979Z\" 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,gBAAqwB,EAArwB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,kUAAkU,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kUAAkU,KAAK,eAAc,CAAI,GAG/vB",
  "debugId": "E02121D0F9705D4D64756E2164756E21",
  "names": []
}