import React from 'react'; import styled from 'styled-components' import { Password, Expiry, Language } from './Inputs' const Flex = styled.div` float: right; display: flex; flex-direction: row; transform: translateY(0.2em); & > *:not(:first-child) { margin-left: 2em; } @media (max-width: 850px) { float: none !important; } ` const OptionsContainer = ({pass, lang, expiry, onPassChange, onLangChange, onExpiryChange}) => { return ( ); } export default OptionsContainer