@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.17 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconRemoveBackground/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemoveBackground: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remove-background\">\n <path d=\"M3 3H10.2929L3 10.2929V3Z\" fill=\"currentColor\" />\n <path\n d=\"M3 20.2929V11.7071L11.7071 3H20.2929L14.2746 9.01833C13.6437 8.53632 12.8553 8.25 12 8.25C9.92893 8.25 8.25 9.92893 8.25 12C8.25 12.8553 8.53632 13.6437 9.01833 14.2746L3 20.2929Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.9817 9.72544L21 3.70711V12.2929L12.2929 21H3.70711L9.72544 14.9817C10.3563 15.4637 11.1447 15.75 12 15.75C14.0711 15.75 15.75 14.0711 15.75 12C15.75 11.1447 15.4637 10.3563 14.9817 9.72544Z\"\n fill=\"currentColor\"\n />\n <path d=\"M13.7071 21H21V13.7071L13.7071 21Z\" fill=\"currentColor\" />\n <path\n d=\"M9.25 12C9.25 10.4812 10.4812 9.25 12 9.25C13.5188 9.25 14.75 10.4812 14.75 12C14.75 13.5188 13.5188 14.75 12 14.75C10.4812 14.75 9.25 13.5188 9.25 12Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRemoveBackground;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,qBACpCC,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,sLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oMACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,qCAAqC,KAAK,eAAe,EACjEA,EAAA,cAAC,QACC,EAAE,0JACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRemoveBackground","props","React","CentralIconBase","IconRemoveBackground_default"]}