Sidebar components

Summary: _typescript_

Reviewed By: priteshrnandgaonkar

Differential Revision: D16828870

fbshipit-source-id: b343b28b3dd1700919df3fcfde659f7fe99cadff
This commit is contained in:
Daniel Büchele
2019-08-20 03:18:32 -07:00
committed by Facebook Github Bot
parent dedf09c2ae
commit 4c521858c7
3 changed files with 54 additions and 35 deletions

View File

@@ -0,0 +1,16 @@
/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
import {colors} from './colors';
import Label from './Label.js';
import styled from 'react-emotion';
export default styled(Label)({
color: colors.blackAlpha30,
fontSize: 12,
padding: 10,
});