summaryrefslogtreecommitdiffhomepage
path: root/app/components/styled/SubText.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/styled/SubText.js')
-rw-r--r--app/components/styled/SubText.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/app/components/styled/SubText.js b/app/components/styled/SubText.js
deleted file mode 100644
index 76b5bb87fd..0000000000
--- a/app/components/styled/SubText.js
+++ /dev/null
@@ -1,26 +0,0 @@
-// @flow
-import React from 'react';
-import { Text, Component } from 'reactxp';
-import { createTextStyles } from '../../lib/styles';
-
-const styles = {
- ...createTextStyles({
- subtext:{
- fontFamily: 'Open Sans',
- fontSize: 13,
- fontWeight: '800',
- flex: 0,
- textAlign: 'right',
- },
- })
-};
-
-export class SubText extends Component {
- render() {
- return (
- <Text style={[ styles.subtext, this.props.style ]}>
- {this.props.children}
- </Text>
- );
- }
-} \ No newline at end of file