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/IconEthereum/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEthereum: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"ethereum\">\n <path\n d=\"M12 6.5L12.8087 5.91183C12.6206 5.65308 12.3199 5.5 12 5.5C11.6801 5.5 11.3794 5.65308 11.1913 5.91183L12 6.5ZM8 12L7.19126 11.4118C6.93625 11.7625 6.93625 12.2375 7.19126 12.5882L8 12ZM12 17.5L11.1913 18.0882C11.3794 18.3469 11.6801 18.5 12 18.5C12.3199 18.5 12.6206 18.3469 12.8087 18.0882L12 17.5ZM16 12L16.8087 12.5882C17.0638 12.2375 17.0638 11.7625 16.8087 11.4118L16 12ZM12 13L11.7575 13.9701C11.9167 14.01 12.0833 14.01 12.2425 13.9701L12 13ZM11.1913 5.91183L7.19126 11.4118L8.80874 12.5882L12.8087 7.08817L11.1913 5.91183ZM7.19126 12.5882L11.1913 18.0882L12.8087 16.9118L8.80874 11.4118L7.19126 12.5882ZM12.8087 18.0882L16.8087 12.5882L15.1913 11.4118L11.1913 16.9118L12.8087 18.0882ZM16.8087 11.4118L12.8087 5.91183L11.1913 7.08817L15.1913 12.5882L16.8087 11.4118ZM7.75746 12.9701L11.7575 13.9701L12.2425 12.0299L8.24254 11.0299L7.75746 12.9701ZM12.2425 13.9701L16.2425 12.9701L15.7575 11.0299L11.7575 12.0299L12.2425 13.9701ZM20 12C20 16.4183 16.4183 20 12 20V22C17.5228 22 22 17.5228 22 12H20ZM12 20C7.58172 20 4 16.4183 4 12H2C2 17.5228 6.47715 22 12 22V20ZM4 12C4 7.58172 7.58172 4 12 4V2C6.47715 2 2 6.47715 2 12H4ZM12 4C16.4183 4 20 7.58172 20 12H22C22 6.47715 17.5228 2 12 2V4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEthereum;\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,YACpCC,EAAA,cAAC,QACC,EAAE,6qCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEthereum","props","React","CentralIconBase","IconEthereum_default"]}