@wordpress/block-library
Version:
Block library for the WordPress editor.
15 lines (14 loc) • 599 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { Path, SVG } from '@wordpress/primitives';
export const GoogleIcon = () => createElement(SVG, {
width: "24",
height: "24",
viewBox: "0 0 24 24",
version: "1.1"
}, createElement(Path, {
d: "M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"
}));
//# sourceMappingURL=google.js.map