{
  "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.845 3.57322C17.7474 3.47562 17.5892 3.47559 17.4915 3.57315L16.1972 4.86641C15.3858 5.6781 15.3856 6.99415 16.1972 7.80575C17.0089 8.61742 18.3249 8.61742 19.1366 7.80575L20.4307 6.51264C20.5284 6.41502 20.5285 6.25667 20.4308 6.15901L17.845 3.57322ZM16.4313 2.51205C17.1148 1.82912 18.2225 1.82934 18.9057 2.51256L21.4915 5.09835C22.1751 5.78197 22.1749 6.8904 21.491 7.57373L20.1972 8.86641C18.9819 10.0817 17.11 10.2401 15.7235 9.34171L11.3087 13.7565L13.5709 16.0187C14.251 16.6988 14.2625 17.8192 13.5494 18.4989C10.4866 21.4181 7.19519 22.8625 3.01059 21.4676C2.78664 21.393 2.6109 21.2173 2.53625 20.9933C1.14136 16.8087 2.58559 13.5171 5.5049 10.4543C6.1846 9.74122 7.30497 9.75279 7.98509 10.4329L10.2481 12.6959L14.6625 8.2814C13.7627 6.89472 13.9207 5.0216 15.1366 3.80575L16.4313 2.51205Z\" 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,gBAAw6B,EAAx6B,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uyBAAuyB,KAAK,eAAc,CAAI,GAGl6B",
  "debugId": "48D0EDDD3FC81C5464756E2164756E21",
  "names": []
}