// @ts-nocheck import styled from 'styled-components'; import { Icon, FormattedMessage as T } from '@/components'; interface AuthContainerProps { children: React.ReactNode; } export function AuthContainer({ children }: AuthContainerProps) { return ( {children} ); } const AuthPage = styled.div``; const AuthInsider = styled.div` width: 384px; margin: 0 auto; margin-bottom: 40px; padding-top: 80px; `; const AuthLogo = styled.div` text-align: center; margin-bottom: 40px; `;