UNPKG

@central-icons-react/square-filled-radius-0-stroke-1.5

Version:

A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.

1 lines 2.92 kB
{"version":3,"sources":["../src/IconPumpjack/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPumpjack: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pumpjack, oil\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.741 8.09523L17.2375 6.30866C17.4433 6.54622 17.704 6.73482 18 6.85462V19.5H16.8398L15.9007 17H8.09927L7.16013 19.5H3V21H21V19.5H19.5V6.85462C20.233 6.55793 20.75 5.83934 20.75 5C20.75 3.89543 19.8546 3 18.75 3C17.6833 3 16.8117 3.83503 16.7531 4.88706L4.70882 9.6725C4.42847 8.57921 4.55377 7.45168 5.01132 6.47318L3.65254 5.83781C2.9243 7.39518 2.83608 9.24703 3.56467 10.9544C4.29327 12.6618 5.69133 13.8794 7.31961 14.4312L7.80102 13.0105C6.79042 12.668 5.89915 11.9909 5.30371 11.0502L11.0182 8.77972L8.65417 15.5H15.3458L12.741 8.09523ZM18.75 4.5C18.4739 4.5 18.25 4.72386 18.25 5C18.25 5.27614 18.4739 5.5 18.75 5.5C19.0261 5.5 19.25 5.27614 19.25 5C19.25 4.72386 19.0261 4.5 18.75 4.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPumpjack;\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,iBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2rBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPumpjack","props","React","CentralIconBase","IconPumpjack_default"]}