@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.56 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCar2Ev/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCar2Ev: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"car-2-ev\">\n <path\n d=\"M18.5 17H20C21.1046 17 22 16.1046 22 15V12.4594C22 11.0294 20.9906 9.79812 19.5883 9.51767L18.1239 9.22479C17.4002 9.08003 16.7551 8.67353 16.3123 8.08305L14.9 6.2C14.3334 5.44458 13.4443 5 12.5 5H8.24264C7.44699 5 6.68393 5.31607 6.12132 5.87868L2.87868 9.12132C2.31607 9.68393 2 10.447 2 11.2426V14.5C2 15.8807 3.11929 17 4.5 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx=\"7\"\n cy=\"16.75\"\n r=\"2.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <circle\n cx=\"17\"\n cy=\"16.75\"\n r=\"2.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M13.9933 10H11.9167L12.203 7.93824C12.2384 7.68391 11.9132 7.54796 11.757 7.75174L8.80828 11.5979C8.6822 11.7624 8.79945 12 9.00669 12H11.0833L10.797 14.0618C10.7617 14.3161 11.0868 14.452 11.243 14.2483L14.1917 10.4021C14.3178 10.2376 14.2006 10 13.9933 10Z\"\n fill=\"currentColor\"\n />\n <path d=\"M14.5 17H9.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconCar2Ev;\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,YACpCC,EAAA,cAAC,QACC,EAAE,6UACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,UACC,GAAG,IACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,UACC,GAAG,KACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,qQACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,CAC/D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCar2Ev","props","React","CentralIconBase","IconCar2Ev_default"]}