{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeMedium/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 IconCodeMedium: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-medium, syntax, brackets, dev\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.26402 7.20385C7.56565 7.48774 7.58004 7.9624 7.29615 8.26403L3.77994 12L7.29615 15.736C7.58004 16.0376 7.56565 16.5123 7.26402 16.7962C6.96239 17.08 6.48774 17.0657 6.20385 16.764L2.20385 12.514C1.93205 12.2252 1.93205 11.7748 2.20385 11.486L6.20385 7.23598C6.48774 6.93435 6.96239 6.91996 7.26402 7.20385ZM16.736 7.20385C17.0376 6.91996 17.5123 6.93435 17.7962 7.23598L21.7962 11.486C22.0679 11.7748 22.0679 12.2252 21.7962 12.514L17.7962 16.764C17.5123 17.0657 17.0376 17.08 16.736 16.7962C16.4343 16.5123 16.42 16.0376 16.7038 15.736L20.2201 12L16.7038 8.26403C16.42 7.9624 16.4343 7.48774 16.736 7.20385Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeMedium;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAsvB,EAAtvB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,smBAAsmB,KAAK,eAAc,CAAI,GAGhvB",
  "debugId": "FFD262D565AD1ACD64756E2164756E21",
  "names": []
}