{
  "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=\"M16.718 2.21967C17.0109 1.92678 17.4858 1.92678 17.7787 2.21967L21.7787 6.21967C21.9194 6.36032 21.9984 6.55109 21.9984 6.75C21.9984 6.94891 21.9194 7.13968 21.7787 7.28033L20.2787 8.78033C19.0634 9.9956 17.1915 10.154 15.805 9.25564L11.3902 13.6705L14.3595 16.6397C14.5001 16.7804 14.5791 16.9711 14.5791 17.17C14.5791 17.369 14.5001 17.5597 14.3594 17.7004C12.6005 19.4593 11.0061 20.8094 9.22338 21.4951C7.3989 22.1968 5.4649 22.1725 3.09207 21.3816C2.86812 21.3069 2.69238 21.1312 2.61773 20.9072C1.82677 18.5344 1.80245 16.6003 2.50415 14.7758C3.18979 12.9931 4.53984 11.3987 6.29881 9.63971C6.5917 9.34682 7.06657 9.34682 7.35947 9.63971L10.3296 12.6098L14.744 8.19534C13.8442 6.80865 14.0022 4.93553 15.218 3.71967L16.718 2.21967ZM17.2484 3.81066L16.2787 4.78033C15.467 5.59201 15.467 6.90799 16.2787 7.71967C17.0904 8.53135 18.4064 8.53135 19.218 7.71967L20.1877 6.75L17.2484 3.81066Z\" 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,gBAAggC,EAAhgC,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+3BAA+3B,KAAK,eAAc,CAAI,GAG1/B",
  "debugId": "1FD92654C336367064756E2164756E21",
  "names": []
}