import Image from "next/image"; import "./GoogleButton.scss"; import google_icon from "./icons/google-icon.svg"; interface IGoogleButton { children?: React.ReactNode; } const GoogleButton = ({ children }: IGoogleButton) => { return (
Google Icon {children}
); }; export default GoogleButton;