Files
radio-otherway/web/src/components/widgets/buttons/social/GoogleButton.tsx
2023-03-06 05:23:19 +00:00

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;