Skip to content

Commit 44f00aa

Browse files
authored
[icons] Add Google icon (#21807)
1 parent 85dd137 commit 44f00aa

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

docs/src/pages/components/material-icons/synonyms.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ const synonyms = {
332332
GitHub: 'brand code',
333333
GolfCourse: 'flag',
334334
GpsFixed: 'location',
335+
Google: 'brand logo',
335336
Grade: 'likes rated rating shape star',
336337
GraphicEq: 'audio equalizer',
337338
GridOn: 'sheet',
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import * as React from 'react';
2+
import createSvgIcon from './utils/createSvgIcon';
3+
4+
export default createSvgIcon(
5+
<path d="M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z" />,
6+
'Google',
7+
);
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import * as React from 'react';
2+
import createSvgIcon from './utils/createSvgIcon';
3+
4+
export default createSvgIcon(
5+
<path d="M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z" />,
6+
'Google',
7+
);

packages/material-ui-icons/src/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2576,6 +2576,7 @@ export { default as GolfCourseOutlined } from './GolfCourseOutlined';
25762576
export { default as GolfCourseRounded } from './GolfCourseRounded';
25772577
export { default as GolfCourseSharp } from './GolfCourseSharp';
25782578
export { default as GolfCourseTwoTone } from './GolfCourseTwoTone';
2579+
export { default as Google } from './Google';
25792580
export { default as GpsFixed } from './GpsFixed';
25802581
export { default as GpsFixedOutlined } from './GpsFixedOutlined';
25812582
export { default as GpsFixedRounded } from './GpsFixedRounded';

0 commit comments

Comments
 (0)