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.12 kB
{"version":3,"sources":["../src/IconFirewall/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFirewall: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"firewall,wall\">\n <path\n d=\"M6 9H10M6 9C4.89543 9 4 8.10457 4 7C4 5.34315 5.34315 4 7 4H10C11.1046 4 12 4.89543 12 6M6 9C7.10457 9 8 9.89543 8 11M6 9C4.89543 9 4 9.89543 4 11V13C4 14.1046 4.89543 15 6 15M12 7V6M12 7C12 8.10457 11.1046 9 10 9M12 7C12 8.10457 12.8954 9 14 9M10 9H14M10 9C8.89543 9 8 9.89543 8 11M12 6C12 4.89543 12.8954 4 14 4H17C18.6569 4 20 5.34315 20 7C20 8.10457 19.1046 9 18 9M14 9H18M14 9C15.1046 9 16 9.89543 16 11M18 9C19.1046 9 20 9.89543 20 11V13C20 14.1046 19.1046 15 18 15M18 9C16.8954 9 16 9.89543 16 11M12 18V17M12 18C12 19.1046 11.1046 20 10 20H7C5.34315 20 4 18.6569 4 17C4 15.8954 4.89543 15 6 15M12 18C12 19.1046 12.8954 20 14 20H17C18.6569 20 20 18.6569 20 17C20 15.8954 19.1046 15 18 15M10 15H6M10 15C11.1046 15 12 15.8954 12 17M10 15H14M10 15C8.89543 15 8 14.1046 8 13M12 17C12 15.8954 12.8954 15 14 15M6 15C7.10457 15 8 14.1046 8 13M18 15H14M18 15C16.8954 15 16 14.1046 16 13M14 15C15.1046 15 16 14.1046 16 13M16 13V11M8 13V11\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFirewall;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,EAAE,06BACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFirewall","props","React","CentralIconBase","IconFirewall_default"]}