{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCode/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 IconCode: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75ZM10.7803 8.46967C11.0732 8.76256 11.0732 9.23744 10.7803 9.53033L8.84099 11.4697C8.5481 11.7626 8.5481 12.2374 8.84099 12.5303L10.7803 14.4697C11.0732 14.7626 11.0732 15.2374 10.7803 15.5303C10.4874 15.8232 10.0126 15.8232 9.71967 15.5303L6.71967 12.5303C6.42678 12.2374 6.42678 11.7626 6.71967 11.4697L9.71967 8.46967C10.0126 8.17678 10.4874 8.17678 10.7803 8.46967ZM14.2803 8.46967C13.9874 8.17678 13.5126 8.17678 13.2197 8.46967C12.9268 8.76256 12.9268 9.23744 13.2197 9.53033L15.159 11.4697C15.4519 11.7626 15.4519 12.2374 15.159 12.5303L13.2197 14.4697C12.9268 14.7626 12.9268 15.2374 13.2197 15.5303C13.5126 15.8232 13.9874 15.8232 14.2803 15.5303L17.2803 12.5303C17.5732 12.2374 17.5732 11.7626 17.2803 11.4697L14.2803 8.46967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCode;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAq+B,EAAr+B,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m3BAAm3B,KAAK,eAAc,CAAI,GAG/9B",
  "debugId": "57C01A149977E08164756E2164756E21",
  "names": []
}