{
  "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 16.5278C2.25 17.1241 2.25 17.4222 2.33748 17.6883C2.41488 17.9238 2.54143 18.1402 2.70875 18.3231C2.89787 18.5299 3.15769 18.676 3.67733 18.9683L10.1434 22.6052V18.9782L2.25 14.5384V16.5278ZM11.5353 18.9498V22.5111L20.4758 16.7006C20.9414 16.398 21.1742 16.2467 21.3428 16.0449C21.4921 15.8663 21.6043 15.6596 21.6727 15.4371C21.75 15.1857 21.75 14.9081 21.75 14.3529V12.31L11.5353 18.9498ZM2.25 12.9425L10.1434 17.3823V13.7552L2.25 9.31544V12.9425ZM11.5353 13.7269V17.2882L21.75 10.6495V7.08706L11.5353 13.7269ZM2.89607 8.08337L10.8121 12.5356L21.1028 5.84706L14.6641 2.22574C14.1272 1.92378 13.8587 1.7728 13.5754 1.71955C13.3247 1.67245 13.0668 1.68071 12.8197 1.74375C12.5403 1.81501 12.282 1.98285 11.7656 2.31854L2.89607 8.08337Z\" 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,gBAAo3B,EAAp3B,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wuBAAwuB,KAAK,eAAc,CAAI,GAG92B",
  "debugId": "E92D5C9152C1B63D64756E2164756E21",
  "names": []
}