UNPKG

@central-icons-react/round-outlined-radius-3-stroke-2

Version:

A collection of round outlined React icons with 3px radius and 2px stroke width, designed for use in React applications.

1 lines 3.33 kB
{"version":3,"sources":["../src/IconTrashPaper/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTrashPaper: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"trash-paper\">\n <path\n d=\"M11.6218 4.53911L13.2293 3.48587C14.218 2.83804 15.4921 2.83804 16.4808 3.48587L17.2697 4.00276C17.7802 4.33727 18.0882 4.90965 18.0882 5.52373C18.0882 6.21744 18.4805 6.85039 19.0988 7.15421L19.5438 7.37291C21.0181 8.09739 21.4621 10.0041 20.4618 11.3149L19.166 13.0131M11.6218 4.53911L7.50618 5.16143C5.90049 5.40423 4.78179 6.89727 4.9884 8.52173L5.15546 9.83534M11.6218 4.53911L13.7773 7.18723M5.15546 9.83534L4.51581 10.1497C3.58843 10.6054 3 11.5548 3 12.5954V13.0228C3 13.6774 3.32836 14.2875 3.87254 14.644C4.34452 14.9533 4.65788 15.4562 4.7295 16.0193L4.97162 17.9231C5.08755 18.8346 5.61621 19.6403 6.40272 20.1041C7.29957 20.633 8.40665 20.6447 9.3143 20.1349L11.6218 18.8389M5.15546 9.83534L5.91343 10.5803C6.42854 11.0866 7.20323 11.2123 7.84979 10.8946M11.6218 18.8389L12.4853 19.8997C13.2646 20.8571 14.5458 21.2353 15.7138 20.8526L16.447 20.6124C16.819 20.4905 17.1637 20.2961 17.4614 20.0401L19.4177 18.3576C20.519 17.4105 20.788 15.8029 20.0559 14.5437L19.166 13.0131M11.6218 18.8389L10.5441 17.7797M19.166 13.0131L16.4716 13.5427\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTrashPaper;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,eACpCC,EAAA,cAAC,QACC,EAAE,4hCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTrashPaper","props","React","CentralIconBase","IconTrashPaper_default"]}