import styled from 'styled-components/native'; export const Container = styled.View` display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; ` export const LogoWrapper = styled.View` align-items: center; `; export const Slogan = styled.View` align-items: center; margin-bottom: 10px; `; export const BottomPopup = styled.View` padding: 40px 40px 0; background-color: white; border-top-right-radius: 10px; border-top-left-radius: 10px; `;