15 lines
321 B
JavaScript
15 lines
321 B
JavaScript
import typography from '../typography';
|
|
import styled from 'styled-components';
|
|
import global from './global';
|
|
|
|
export default styled.div`
|
|
${typography.normal};
|
|
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
background-color: ${props => props.theme.background};
|
|
color: ${props => props.theme.text};
|
|
`;
|
|
|
|
export { global };
|