aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/components/markdown_paragraph_block.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-10-15 18:27:56 +0800
committerFabio Berger <me@fabioberger.com>2018-10-15 18:27:56 +0800
commiteee0640b07bcddccbddf68618f2772b1de92a18d (patch)
tree98f132b1b36c507f9bfb66042b7ee6e01338766e /packages/react-shared/src/components/markdown_paragraph_block.tsx
parent4298da118f8cb7ca54b255576894bc98b7f7b374 (diff)
downloaddexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar.gz
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar.bz2
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar.lz
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar.xz
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.tar.zst
dexon-sol-tools-eee0640b07bcddccbddf68618f2772b1de92a18d.zip
chore: many small stylistic changes
Diffstat (limited to 'packages/react-shared/src/components/markdown_paragraph_block.tsx')
-rw-r--r--packages/react-shared/src/components/markdown_paragraph_block.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/react-shared/src/components/markdown_paragraph_block.tsx b/packages/react-shared/src/components/markdown_paragraph_block.tsx
new file mode 100644
index 000000000..519638446
--- /dev/null
+++ b/packages/react-shared/src/components/markdown_paragraph_block.tsx
@@ -0,0 +1,14 @@
+import * as _ from 'lodash';
+import * as React from 'react';
+
+import { colors } from '../utils/colors';
+
+export interface MarkdownParagraphBlockProps {}
+
+export interface MarkdownParagraphBlockState {}
+
+export class MarkdownParagraphBlock extends React.Component<MarkdownParagraphBlockProps, MarkdownParagraphBlockState> {
+ public render(): React.ReactNode {
+ return <span style={{ color: colors.greyTheme, lineHeight: '26px' }}>{this.props.children}</span>;
+ }
+}