Files
outline/app/components/Tabs.js
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;