import styled from 'styled-components';
import { Flex } from 'UIKit/grid';
import { min } from 'UIKit/mq';
const UserText = styled.span`
margin: 0;
margin-bottom: 1px;
padding: 0;
text-transform: uppercase;
color: #fff;
font-size: 0.5rem;
font-family: 'Montserrat';
font-weight: 500;
${min('laptop')} {
font-size: 0.75rem;
}
`;
const User = () => username;
const Logout = styled.a`
margin: 0;
padding: 0;
text-transform: uppercase;
color: #fff;
font-size: 0.45rem;
font-family: 'Montserrat';
font-weight: 500;
${min('laptop')} {
font-size: 0.55rem;
}
`;
const Auth = () => {
return (
Выход
);
};
export default Auth;