mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-01 09:14:56 +00:00
9 lines
213 B
TypeScript
9 lines
213 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const GoogleLogo = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M128 128h80a80 80 0 1 1-23.4-56.6" fill="none" />
|
|
</Icon>
|
|
)
|