@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.32 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconGoogle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGoogle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"google\">\n <path\n d=\"M21.5844 12.2273C21.5844 11.5182 21.5208 10.8363 21.4026 10.1818H11.9844V14.0545H17.3662C17.1298 15.3 16.4207 16.3545 15.3571 17.0636V19.5818H18.6026C20.4935 17.8363 21.5844 15.2727 21.5844 12.2273Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.982 22C14.682 22 16.9456 21.1091 18.6002 19.5818L15.3547 17.0636C14.4638 17.6636 13.3274 18.0273 11.982 18.0273C9.38197 18.0273 7.17287 16.2727 6.38196 13.9091H3.05469V16.4909C4.70014 19.7546 8.07288 22 11.982 22Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M6.38438 13.9C6.18438 13.3 6.0662 12.6636 6.0662 12C6.0662 11.3363 6.18438 10.7 6.38438 10.1V7.51816H3.0571C2.37528 8.86361 1.98438 10.3818 1.98438 12C1.98438 13.6182 2.37528 15.1364 3.0571 16.4818L5.64802 14.4636L6.38438 13.9Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.982 5.98182C13.4547 5.98182 14.7638 6.49091 15.8092 7.47273L18.6729 4.60909C16.9365 2.99091 14.682 2 11.982 2C8.07288 2 4.70014 4.24546 3.05469 7.51819L6.38196 10.1C7.17287 7.73637 9.38197 5.98182 11.982 5.98182Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGoogle;\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,yMACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4NACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,sOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2NACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGoogle","props","React","CentralIconBase","IconGoogle_default"]}