{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTrashPaper/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 IconTrashPaper: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"trash-paper\"><path d=\"M3.97834 9.42845L4.15354 9.34248L4.03971 8.44877C3.78192 6.42467 5.17852 4.55689 7.19443 4.2525L11.3373 3.62695L12.8935 2.60876C14.134 1.79708 15.7339 1.79708 16.9744 2.60875L17.8259 3.16584C18.5637 3.64863 19.0069 4.47272 19.0069 5.35458C19.0069 5.78245 19.2492 6.16984 19.6264 6.35495L20.0835 6.57926C22.0259 7.53245 22.6063 10.0338 21.293 11.7524L20.2652 13.0973L20.9612 14.2926C21.8755 15.8631 21.5405 17.868 20.1625 19.0514L18.0897 20.8315C17.7167 21.1518 17.2845 21.3954 16.8176 21.5481L16.001 21.8153C14.5339 22.2952 12.9262 21.8203 11.9501 20.6229L11.428 19.9824L9.59292 21.0116C8.43174 21.6628 7.0054 21.6352 5.86593 20.9642C4.8677 20.3763 4.18182 19.3484 4.03428 18.19L3.78344 16.2205C3.73747 15.8595 3.53645 15.5388 3.23608 15.3423C2.46385 14.837 2 13.9745 2 13.0514V12.6123C2 11.2601 2.76606 10.0233 3.97834 9.42845Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTrashPaper;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAk5B,EAAl5B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,+zBAA+zB,KAAK,eAAc,CAAI,GAG54B",
  "debugId": "5A2E5E7C8240344E64756E2164756E21",
  "names": []
}