This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-09 23:14:51 -07:00

11 lines
206 B
JavaScript

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