{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEraser/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 IconEraser: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"eraser, rubber, clean-up\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.584 17.6442L6.50055 11.5607L4.75081 13.3104C3.84378 14.2175 3.87741 15.6981 4.8247 16.563L7.39699 18.9116C7.81158 19.2902 8.3527 19.5 8.9141 19.5H9.83337C10.4426 19.5 11.0257 19.253 11.4496 18.8154L12.584 17.6442ZM12.3489 3.59103C13.8134 2.12656 16.1877 2.12656 17.6522 3.59102L20.4432 6.38199C21.8911 7.82995 21.9098 10.1717 20.4852 11.6426L12.527 19.859C11.8206 20.5883 10.8487 21 9.83337 21H8.9141C7.97843 21 7.07656 20.6502 6.38559 20.0194L3.81329 17.6707C2.23448 16.2292 2.17843 13.7615 3.69015 12.2498L12.3489 3.59103Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEraser;\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,gBAAypB,EAAzpB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mhBAAmhB,KAAK,eAAc,CAAI,GAGnpB",
  "debugId": "AEEF75F6D0CE926964756E2164756E21",
  "names": []
}