import React from 'react'; import PropTypes from 'prop-types'; import styled from 'styled-components'; import { prop, remSize } from '../../../theme'; const background = prop('Button.default.background'); const textColor = prop('primaryTextColor'); const Header = styled.div` width: 100%; background-color: ${background} !important; color: ${textColor}; padding-left: ${remSize(32)}; `; const Footer = styled.div` width: 100%; position: absolute; bottom: 0; background: ${background}; color: ${textColor}; padding-left: ${remSize(32)}; `; const Screen = ({ children }) => (
{children}
); Screen.propTypes = { children: PropTypes.node.isRequired }; export default () => (

Mobile View


This page is under construction.
Click here to return to the regular editor

);