{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCodeTree/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 IconCodeTree: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"code-tree, file-tree\"><path d=\"M4.75 3C5.16421 3 5.5 3.33579 5.5 3.75V9H13.082C13.4255 7.42756 14.8246 6.25 16.5 6.25C18.433 6.25 20 7.817 20 9.75C20 11.683 18.433 13.25 16.5 13.25C14.8246 13.25 13.4255 12.0724 13.082 10.5H5.5V17H13.082C13.4255 15.4276 14.8246 14.25 16.5 14.25C18.433 14.25 20 15.817 20 17.75C20 19.683 18.433 21.25 16.5 21.25C14.8246 21.25 13.4255 20.0724 13.082 18.5H4.75C4.33579 18.5 4 18.1642 4 17.75V3.75C4 3.33579 4.33579 3 4.75 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCodeTree;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAsgB,EAAtgB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,0aAA0a,KAAK,eAAc,CAAI,GAGhgB",
  "debugId": "B4C93FCA9369B27064756E2164756E21",
  "names": []
}