{
  "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.5395 17.6003L6.49985 11.5606L3.73729 14.3232C3.63965 14.4208 3.63965 14.5791 3.73729 14.6767L8.48729 19.4267C8.53417 19.4736 8.59776 19.5 8.66406 19.5H10.5787C10.6461 19.5 10.7105 19.4728 10.7576 19.4247L12.5395 17.6003ZM13.2624 2.67675C13.9458 1.99333 15.0539 1.99333 15.7373 2.67675L21.3313 8.27081C22.0091 8.94855 22.0155 10.0454 21.3458 10.731L11.8306 20.4728C11.5013 20.8099 11.05 21 10.5787 21H8.66406C8.19993 21 7.75481 20.8156 7.42663 20.4874L2.67663 15.7374C1.99321 15.054 1.99321 13.946 2.67663 13.2625L13.2624 2.67675Z\" 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,gBAA8pB,EAA9pB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,whBAAwhB,KAAK,eAAc,CAAI,GAGxpB",
  "debugId": "4A41B2B0F4928A4264756E2164756E21",
  "names": []
}