Skip to main content
function IconGoogleLogo(props: Omit<SVGProps<SVGSVGElement>, "viewBox">): Element;
Google logo icon component.

Parameters

ParameterTypeDescription
propsOmit<SVGProps<SVGSVGElement>, "viewBox">The props for the icon.

Returns

Element The Google logo icon.

Example

// Icon is correctly hidden from screen readers
<p>
  <IconGoogleLogo />
  Google
</p>

// Icon with screen-reader accessible label only
<p>
  <IconGoogleLogo aria-label="Google" />
</p>