import styled from 'styled-components'; import Card from '../../components/card'; import {View} from 'react-native'; export const LoginCard = styled(Card)` padding: ${({theme: {spacing}}) => spacing[7]}px; margin: auto; margin-top: ${({theme: {spacing}}) => spacing[4]}px; `; export const ButtonContainer = styled(View)` margin-top: ${({theme: {spacing}}) => spacing[5]}px; min-width: 230px; `;