import * as React from "react"; import { memo } from "react"; import { LoginCard as LoginCardStyled, ButtonContainer } from "./styled"; import Button from "../../components/ui/button"; import Typography from "../../components/ui/typography"; import { useContentProvider } from "../../providers/content-provider"; function LoginCard({ onSetVisible }: any) { const { content: { signIn }, } = useContentProvider(); return ( {signIn.LOGIN_MESSAGE}