@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 • 2.92 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconMedium/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMedium: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"medium\">\n <path\n d=\"M6.76859 18.8203C10.507 18.8203 13.5374 15.7689 13.5374 12.005C13.5374 8.24114 10.5067 5.19 6.76859 5.19C3.03045 5.19 0 8.24022 0 12.005C0 15.7698 3.03022 18.8203 6.76859 18.8203Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.5785 18.4203C19.4475 18.4203 20.9629 15.5482 20.9629 12.005C20.9629 8.46271 19.4475 5.5897 17.5785 5.5897C15.7094 5.5897 14.1941 8.46271 14.1941 12.005C14.1941 15.5473 15.7094 18.4203 17.5785 18.4203Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M22.8097 17.7529C23.467 17.7529 24 15.1796 24 12.005C24 8.83068 23.4675 6.25715 22.8099 6.25715C22.1523 6.25715 21.6193 8.83137 21.6193 12.005C21.6193 15.1787 22.1523 17.7529 22.8097 17.7529Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMedium;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,EAAE,sLACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMedium","props","React","CentralIconBase","IconMedium_default"]}