import { FC } from "react" interface GoogleSVGProps { height?: number width?: number className?: string } export const GoogleSVG: FC = ({ height = 40, width = 40, className }) => { return ( ) }