mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 09:50:29 +00:00
16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
import React from "react";
|
|
import { ISocialButtonProps } from "./socialButtonProps";
|
|
import { IoLogoGoogle } from "react-icons/io";
|
|
import BaseSocialButton from "@/components/widgets/buttons/social/BaseSocialButton";
|
|
|
|
const GoogleButton = ({ onClick }: ISocialButtonProps) => {
|
|
return (
|
|
<BaseSocialButton onClick={onClick}>
|
|
<IoLogoGoogle className="mr-2" />
|
|
Google
|
|
</BaseSocialButton>
|
|
);
|
|
};
|
|
|
|
export default GoogleButton;
|