{
  "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=\"M13.9697 1.96967C14.2626 1.67678 14.7374 1.67678 15.0303 1.96967L22.0303 8.96967C22.3208 9.26013 22.3236 9.7302 22.0365 10.0241L11.5365 20.7741C11.3954 20.9185 11.202 21 11 21H8.25C8.05109 21 7.86032 20.921 7.71967 20.7803L1.96967 15.0303C1.67678 14.7374 1.67678 14.2626 1.96967 13.9697L13.9697 1.96967ZM3.56066 14.5L8.56066 19.5H10.6842L12.5397 17.6003L6.5 11.5607L3.56066 14.5Z\" 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,gBAAogB,EAApgB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8XAA8X,KAAK,eAAc,CAAI,GAG9f",
  "debugId": "745C016C72A8145764756E2164756E21",
  "names": []
}