@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.24 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconRemoveBackground2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRemoveBackground2: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"remove-background-2\">\n <path\n d=\"M17 4H7C5.34315 4 4 5.34315 4 7V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V7C20 5.34315 18.6569 4 17 4Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M12 2V22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M8 4V8H4C4 7.07003 4 6.60504 4.10222 6.22354C4.37962 5.18827 5.18827 4.37962 6.22354 4.10222C6.60504 4 7.07003 4 8 4Z\"\n fill=\"currentColor\"\n />\n <path d=\"M12 8V12H8V8H12Z\" fill=\"currentColor\" />\n <path d=\"M8 12V16H4V12H8Z\" fill=\"currentColor\" />\n <path d=\"M12 16V20H8V16H12Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconRemoveBackground2;\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,uBACpCC,EAAA,cAAC,QACC,EAAE,2HACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,wHACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,EAC/CA,EAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,EAC/CA,EAAA,cAAC,QAAK,EAAE,qBAAqB,KAAK,eAAe,CACnD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRemoveBackground2","props","React","CentralIconBase","IconRemoveBackground2_default"]}