chore: sync with verdaccio master

This commit is contained in:
Juan Picado @jotadeveloper
2019-04-04 21:23:40 +02:00
parent 133a5f0171
commit 3506f32ad8
241 changed files with 57691 additions and 1932 deletions

View File

@@ -1,14 +0,0 @@
/**
* @prettier
* @flow
*/
import React from 'react';
import type { Element } from 'react';
import { IProps } from './types';
import { Wrapper } from './styles';
const Tag = ({ children }: IProps): Element<Wrapper> => <Wrapper>{children}</Wrapper>;
export default Tag;

View File

@@ -1,20 +0,0 @@
/**
* @prettier
* @flow
*/
import styled from 'react-emotion';
import { ellipsis } from '../../utils/styles/mixings';
export const Wrapper = styled.span`
&& {
vertical-align: middle;
line-height: 22px;
border-radius: 2px;
color: #485a3e;
background-color: #f3f4f2;
padding: 0.22rem 0.4rem;
margin: 8px 8px 0 0;
${ellipsis('300px')};
}
`;

View File

@@ -1,9 +0,0 @@
/**
* @prettier
* @flow
*/
import type { Node } from 'react';
export interface IProps {
children: Node;
}