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.
2019-03-12 22:11:33 -07:00

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;