UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 3.18 kB
{"version":3,"sources":["../src/IconRemoveFromBasket2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemoveFromBasket2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remove-from-basket-2\">\n <path\n d=\"M9.22721 3.33248L7.3602 8H16.6444L14.7774 3.33248L16.1701 2.77539L18.26 8H22.1428L21.1565 13.671C20.0784 12.6361 18.6144 12 17.002 12C13.6882 12 11.002 14.6863 11.002 18C11.002 19.0929 11.2941 20.1175 11.8046 21H4.12024L1.85938 8H5.74465L7.83449 2.77539L9.22721 3.33248Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.1735 15.1716C14.4664 14.8787 14.9413 14.8787 15.2342 15.1716L17.002 16.9393L18.7697 15.1716C19.0626 14.8787 19.5375 14.8787 19.8304 15.1716C20.1233 15.4645 20.1233 15.9393 19.8304 16.2322L18.0626 18L19.8304 19.7678C20.1233 20.0607 20.1233 20.5355 19.8304 20.8284C19.5375 21.1213 19.0626 21.1213 18.7697 20.8284L17.002 19.0607L15.2342 20.8284C14.9413 21.1213 14.4664 21.1213 14.1735 20.8284C13.8806 20.5355 13.8806 20.0607 14.1735 19.7678L15.9413 18L14.1735 16.2322C13.8806 15.9393 13.8806 15.4645 14.1735 15.1716Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemoveFromBasket2;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,iRACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,wgBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRemoveFromBasket2","props","React","CentralIconBase","IconRemoveFromBasket2_default"]}