{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHammer/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 IconHammer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hammer, craft, build\"><path d=\"M1.03022 12.0303C0.737324 11.7374 0.737324 11.2626 1.03022 10.9697L9.78022 2.21967C9.92087 2.07902 10.1116 2 10.3105 2H14.6892C14.8881 2 15.0789 2.07902 15.2196 2.21967L16.9696 3.96967C17.2624 4.26256 17.2624 4.73744 16.9696 5.03033L6.03022 15.9697C5.73732 16.2626 5.26245 16.2626 4.96956 15.9697L1.03022 12.0303Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.0302 21.4697C18.7373 21.7626 18.2624 21.7626 17.9696 21.4697L10.2499 13.75L13.7499 10.25L21.4696 17.9697C21.7624 18.2626 21.7624 18.7374 21.4696 19.0303L19.0302 21.4697Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHammer;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA2oB,EAA3oB,IAAqB,EAAO,UAAU,wBAAuB,gBAAC,OAAD,CAAM,EAAE,4TAA4T,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gLAAgL,KAAK,eAAc,CAAI,GAGroB",
  "debugId": "FFA0C17A486489C664756E2164756E21",
  "names": []
}