zepio/app/components/divider.js

10 lines
233 B
JavaScript
Raw Normal View History

2018-12-20 06:10:03 -08:00
// @flow
import styled from 'styled-components';
export const Divider = styled.div`
width: 100%;
height: 1px;
background-color: ${props => props.color || props.theme.colors.text};
opacity: ${props => props.opacity || 1};
`;