@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.96 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconCar3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCar3: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"car-3\">\n <path\n d=\"M18.5 17H19.803C21.0164 17 22 16.0164 22 14.803V14.5669C22 11.9115 20.1257 9.62513 17.5218 9.10435C17.1858 9.03715 16.8863 8.84844 16.6807 8.57432L15.2 6.6C14.4446 5.59278 13.259 5 12 5H7.71208C4.46434 5 2 7.5 2 11.5819V14.5C2 15.8807 3.11929 17 4.5 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <circle\n cx=\"7\"\n cy=\"16.75\"\n r=\"2.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <circle\n cx=\"17\"\n cy=\"16.75\"\n r=\"2.25\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path d=\"M14.5 17H9.5\" stroke=\"currentColor\" strokeWidth=\"2\" />\n </CentralIconBase>\n );\n};\n\nexport default IconCar3;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,SACpCC,EAAA,cAAC,QACC,EAAE,+PACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,UACC,GAAG,IACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,UACC,GAAG,KACH,GAAG,QACH,EAAE,OACF,OAAO,eACP,YAAY,IACd,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","IconCar3","props","React","CentralIconBase","IconCar3_default"]}