16 lines
339 B
React
16 lines
339 B
React
|
import React from 'react';
|
||
|
import styled from 'styled-components';
|
||
|
|
||
|
import { prop, remSize } from '../../theme';
|
||
|
|
||
|
export default styled.div`
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
|
||
|
h3 { text-align: center; width: 100%; }
|
||
|
border-top: 1px solid ${prop('Separator')};
|
||
|
|
||
|
background: ${props => prop('backgroundColor')};
|
||
|
`;
|
||
|
|