{
  "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 14.6565C2.25 15.9341 2.25 16.5729 2.43746 17.1433C2.60332 17.6479 2.87449 18.1116 3.23303 18.5035C3.63829 18.9465 4.19505 19.2597 5.30857 19.886L8.95121 21.9349C9.34311 22.1553 9.53906 22.2655 9.69957 22.2474C9.8396 22.2315 9.96645 22.1574 10.0489 22.0431C10.1434 21.9121 10.1434 21.6872 10.1434 21.2376V18.9784L2.25 14.5386V14.6565ZM11.5353 18.95V21.0373C11.5353 21.5171 11.5353 21.7569 11.6355 21.8903C11.7228 22.0066 11.8564 22.0791 12.0014 22.0889C12.1679 22.1002 12.369 21.9695 12.7712 21.7081L19.0196 17.6472C20.0172 16.9988 20.5161 16.6746 20.8775 16.2422C21.1974 15.8594 21.4377 15.4166 21.5843 14.9397C21.75 14.4011 21.75 13.8062 21.75 12.6163V12.3102L11.5353 18.95ZM2.25 12.9427L10.1434 17.3825V13.7554L2.25 9.31565V12.9427ZM11.5353 13.7271V17.2884L21.75 10.6497V7.08727L11.5353 13.7271ZM2.89607 8.08358L10.8121 12.5358L21.1028 5.84727L16.3525 3.17554C15.202 2.52849 14.6268 2.20496 14.0195 2.09086C13.4824 1.98994 12.9297 2.00764 12.4002 2.14271C11.8015 2.29542 11.2481 2.65508 10.1414 3.37441L2.89607 8.08358Z\" 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,gBAAkpC,EAAlpC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sgCAAsgC,KAAK,eAAc,CAAI,GAG5oC",
  "debugId": "DCF6E62F3692C15D64756E2164756E21",
  "names": []
}