{
  "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=\"M21.6422 10.2674L19.5093 13.0882L20.9586 15.6039C21.3814 16.3378 21.223 17.2649 20.5845 17.819L17.1439 20.805C16.966 20.9594 16.7591 21.0769 16.5356 21.1508L14.2403 21.9097C13.5364 22.1424 12.7589 21.9162 12.2923 21.3378L11.0253 19.767L8.40136 21.2542C7.84398 21.5701 7.15881 21.5629 6.60821 21.2352L4.91075 20.225C4.4424 19.9463 4.12693 19.4679 4.05862 18.9258L3.65043 15.6869C3.64086 15.611 3.59822 15.5409 3.53067 15.4963L2.79448 15.0095C2.29969 14.6823 2 14.1295 2 13.5348V11.5652C2 10.8913 2.38381 10.2789 2.98551 9.98053L4.05409 9.4506L3.71608 6.76856C3.5955 5.81177 4.26446 4.9427 5.21151 4.79819L10.9333 3.92509L13.3973 2.29578C13.9937 1.9014 14.7696 1.90141 15.3661 2.29578L17.5095 3.71309C18.0043 4.04026 18.304 4.59308 18.304 5.18777V6.10858C18.304 6.20775 18.3605 6.30208 18.4559 6.34939L21.0143 7.61814C22.0065 8.11023 22.313 9.38038 21.6422 10.2674Z\" 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,gBAAq7B,EAAr7B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,EAAE,k2BAAk2B,KAAK,eAAc,CAAI,GAG/6B",
  "debugId": "2DAE624B4007991E64756E2164756E21",
  "names": []
}