TextParagraph
Summary: _typescript_ Reviewed By: priteshrnandgaonkar Differential Revision: D16830061 fbshipit-source-id: da34f572f48b744e392c917b8b402630949e6736
This commit is contained in:
committed by
Facebook Github Bot
parent
b48e2bcf71
commit
ff77d4928e
21
src/ui/components/TextParagraph.tsx
Normal file
21
src/ui/components/TextParagraph.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* 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 styled from 'react-emotion';
|
||||
|
||||
/**
|
||||
* A TextParagraph component.
|
||||
*/
|
||||
const TextParagraph = styled('div')({
|
||||
marginBottom: 10,
|
||||
|
||||
'&:last-child': {
|
||||
marginBottom: 0,
|
||||
},
|
||||
});
|
||||
|
||||
export default TextParagraph;
|
||||
Reference in New Issue
Block a user