@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.06 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconBike/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBike: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bike\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M13 4H15.8604L17.187 7.97991L17.2071 8L17.1971 8.01005L17.9008 10.1212C18.2545 10.0419 18.6224 10 19 10C21.7614 10 24 12.2386 24 15C24 17.7614 21.7614 20 19 20C16.2386 20 14 17.7614 14 15C14 12.9683 15.2118 11.2196 16.9521 10.4373L16.4065 8.80062L12.5 12.7071V15.5H9.97532C9.72448 18.0266 7.59269 20 5 20C2.23858 20 0 17.7614 0 15C0 12.2386 2.23858 10 5 10C7.59266 10 9.72442 11.9733 9.97531 14.5H11.5V12.9445L6.05088 7H5V6H9V7H7.40745L11.8961 11.8968L16.0529 7.73995L15.1396 5H13V4ZM8.96905 14.5C8.72298 12.5268 7.03979 11 5 11C2.79086 11 1 12.7909 1 15C1 17.2091 2.79086 19 5 19C7.03983 19 8.72303 17.4731 8.96906 15.5H4.5V14.5H8.96905ZM17.2704 11.3923C15.9273 12.0374 15 13.4104 15 15C15 17.2091 16.7909 19 19 19C21.2091 19 23 17.2091 23 15C23 12.7909 21.2091 11 19 11C18.7328 11 18.4717 11.0262 18.2191 11.0762L19.6325 15.3162L18.6838 15.6325L17.2704 11.3923Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBike;\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,QACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,k2BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBike","props","React","CentralIconBase","IconBike_default"]}