{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShovel/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 IconShovel: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shovel, spade, pick\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.8432 3.57238C17.7457 3.47483 17.5875 3.4748 17.49 3.57231L16.1963 4.86488C15.3853 5.67614 15.3852 6.99148 16.1963 7.80265C17.0076 8.61389 18.3228 8.61389 19.1341 7.80265L20.4276 6.51023C20.5252 6.41266 20.5252 6.2544 20.4276 6.15679L17.8432 3.57238ZM16.4303 2.51178C17.1134 1.82921 18.2205 1.82943 18.9033 2.51229L21.4877 5.0967C22.171 5.77995 22.1707 6.88779 21.4872 7.57076L20.1942 8.86274C18.9795 10.0774 17.1086 10.2357 15.7229 9.3378L11.3105 13.7503L12.8647 15.3045C13.9268 16.3666 13.9682 18.1448 12.7953 19.1858C9.91036 21.7461 6.75347 22.7028 3.01684 21.4573C2.79301 21.3827 2.61737 21.207 2.54276 20.9832C1.2972 17.2465 2.25379 14.0895 4.81416 11.2045C5.85512 10.0316 7.63326 10.073 8.69536 11.1351L10.2504 12.6902L14.6625 8.27805C13.7631 6.89211 13.921 5.01999 15.1362 3.80478L16.4303 2.51178Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconShovel;\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,gBAA26B,EAA36B,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0yBAA0yB,KAAK,eAAc,CAAI,GAGr6B",
  "debugId": "FC7FE125A8B88F5F64756E2164756E21",
  "names": []
}