{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBuildingBlocks/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 IconBuildingBlocks: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"building-blocks, skills, stack\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.25 17.464C2.25 17.7195 2.25 17.8473 2.28749 17.9614C2.32066 18.0623 2.3749 18.155 2.44661 18.2334C2.52766 18.322 2.63901 18.3847 2.86172 18.5099L10.1434 22.6056V18.9785L2.25 14.5388V17.464ZM11.5353 18.9502V22.5115L21.2039 16.2278C21.4035 16.0981 21.5032 16.0333 21.5755 15.9468C21.6395 15.8702 21.6875 15.7816 21.7169 15.6863C21.75 15.5785 21.75 15.4596 21.75 15.2216V12.3104L11.5353 18.9502ZM2.25 12.9429L10.1434 17.3826V13.7556L2.25 9.31582V12.9429ZM11.5353 13.7272V17.2886L21.75 10.6499V7.08744L11.5353 13.7272ZM2.89607 8.08375L10.8121 12.536L21.1028 5.84744L13.8199 1.75132C13.5898 1.62191 13.4747 1.5572 13.3533 1.53438C13.2459 1.5142 13.1353 1.51774 13.0294 1.54475C12.9097 1.5753 12.799 1.64723 12.5777 1.79109L2.89607 8.08375Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBuildingBlocks;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAg3B,EAAh3B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ouBAAouB,KAAK,eAAc,CAAI,GAG12B",
  "debugId": "473E4832BB4CA0C164756E2164756E21",
  "names": []
}