summaryrefslogtreecommitdiff
path: root/frontend/app/components/ellipsis.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/ellipsis.js')
-rw-r--r--frontend/app/components/ellipsis.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/frontend/app/components/ellipsis.js b/frontend/app/components/ellipsis.js
new file mode 100644
index 0000000..1cdcae1
--- /dev/null
+++ b/frontend/app/components/ellipsis.js
@@ -0,0 +1,30 @@
+import React from 'react';
+import { View } from 'react-native';
+import { RkStyleSheet } from 'react-native-ui-kitten';
+
+export class Ellipsis extends React.Component {
+ render() {
+ return (
+ <View style={styles.container}>
+ <View style={styles.dot} />
+ <View style={styles.dot} />
+ <View style={styles.dot} />
+ </View>
+ );
+ }
+}
+
+let styles = RkStyleSheet.create(theme => ({
+ container: {
+ flexDirection: 'row',
+ marginHorizontal: 5,
+ marginVertical: 10,
+ },
+ dot: {
+ height: 5.5,
+ width: 5.5,
+ borderRadius: 3,
+ backgroundColor: theme.colors.text.base,
+ marginHorizontal: 2.5,
+ },
+}));