11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Tabs = styled.nav`
|
|
border-bottom: 1px solid ${props => props.theme.divider};
|
|
margin-top: 22px;
|
|
margin-bottom: 10px;
|
|
`;
|
|
|
|
export default Tabs;
|