react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 925 B
JavaScript
import * as React from 'react';
export function SvgGoogle(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M18.684 15.406c0-1.976 3.21-2.148 3.21-6.011 0-2.797-1.945-4.137-2.144-4.258h1.938L23.625 4h-6.277c-6.387 0-7.41 4.469-7.41 5.95 0 2.206 1.726 4.948 5.199 4.948.316 0 .652-.02 1.008-.058-.06.164-.31.726-.31 1.234 0 1.063.68 1.738.915 2.149-3.8-.035-8.375 1.613-8.375 5.28 0 1.34 1.152 4.497 6.566 4.497 6.176 0 8.047-3.813 8.047-5.95-.004-4.081-4.304-4.757-4.304-6.644zm-2.098-1.363c-2.16 0-3.984-2.719-3.984-5.625 0-.863.414-3.371 2.804-3.371 3.078 0 3.828 4.562 3.828 5.805 0 .289.203 3.191-2.648 3.191zm-.148 12.637c-1.981 0-5.399-.844-5.399-3.844 0-1.04.606-3.754 5.863-3.754.27 0 .504.012.703.031 1.094.817 3.36 1.996 3.36 4.168 0 .985-.586 3.399-4.527 3.399z" })));
}
export default SvgGoogle;