kgroad-frontend2/src/features/GoogleButton/GoogleButton.tsx
2024-02-09 03:53:32 +06:00

15 lines
314 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Image from "next/image";
import "./GoogleButton.scss";
import google from "./icons/google.svg";
const GoogleButton = () => {
return (
<button className="google-btn">
<Image src={google} alt="Google Icon" />
Войти через Google
</button>
);
};
export default GoogleButton;