summaryrefslogtreecommitdiff
path: root/app/components/local/local.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/local/local.tsx')
-rw-r--r--app/components/local/local.tsx34
1 files changed, 22 insertions, 12 deletions
diff --git a/app/components/local/local.tsx b/app/components/local/local.tsx
index e6984fc..200ec01 100644
--- a/app/components/local/local.tsx
+++ b/app/components/local/local.tsx
@@ -1,13 +1,19 @@
-import * as React from "react"
-import { StyleProp, TextStyle, TouchableOpacity, View, ViewStyle } from "react-native"
-import { observer } from "mobx-react-lite"
-import { color, typography } from "../../theme"
-import { Text } from "../"
-import { flatten } from "ramda"
-import Icon from "react-native-vector-icons/MaterialCommunityIcons"
+import * as React from 'react'
+import {
+ StyleProp,
+ TextStyle,
+ TouchableOpacity,
+ View,
+ ViewStyle,
+} from 'react-native'
+import { observer } from 'mobx-react-lite'
+import { color, typography } from '../../theme'
+import { Text } from '../'
+import { flatten } from 'ramda'
+import Icon from 'react-native-vector-icons/MaterialCommunityIcons'
const CONTAINER: ViewStyle = {
- justifyContent: "center",
+ justifyContent: 'center',
}
const TEXT: TextStyle = {
@@ -26,13 +32,17 @@ export interface LocalProps {
/**
* Describe your component here
*/
-export const LocalButton = observer(function LocalButton(props: LocalProps): boolean {
+export const LocalButton = observer(function LocalButton(
+ props: LocalProps,
+): boolean {
const { style } = props
const styles = flatten([CONTAINER, style])
return (
- <Icon color="#a99f1f" name="graph"
- style={{position:"absolute", zIndex: 100, width: 500}}
- />
+ <Icon
+ color="#a99f1f"
+ name="graph"
+ style={{ position: 'absolute', zIndex: 100, width: 500 }}
+ />
)
})