summaryrefslogtreecommitdiff
path: root/app_expo/components/bullet-item
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-23 15:24:35 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-23 15:24:35 +0200
commit356381d14cb1ff3cbd39c7e396dd14379336451b (patch)
treea03e9b2534600bde7b3b781411b5b03f8134904b /app_expo/components/bullet-item
parent7aa007f158a52b41494049a1202938fc97813ec1 (diff)
parent73308af061af5e17ac7d4a73fa027a2f303c70dd (diff)
resolving merge conflicts
Diffstat (limited to 'app_expo/components/bullet-item')
-rw-r--r--app_expo/components/bullet-item/bullet-item.tsx41
1 files changed, 0 insertions, 41 deletions
diff --git a/app_expo/components/bullet-item/bullet-item.tsx b/app_expo/components/bullet-item/bullet-item.tsx
deleted file mode 100644
index f6b2f17..0000000
--- a/app_expo/components/bullet-item/bullet-item.tsx
+++ /dev/null
@@ -1,41 +0,0 @@
-import * as React from 'react'
-import { View, ViewStyle, ImageStyle, TextStyle } from 'react-native'
-import { Text } from '../text/text'
-import { Icon } from '../icon/icon'
-import { spacing, typography } from '../../theme'
-
-const BULLET_ITEM: ViewStyle = {
- flexDirection: 'row',
- marginTop: spacing[4],
- paddingBottom: spacing[4],
- borderBottomWidth: 1,
- borderBottomColor: '#3A3048',
-}
-const BULLET_CONTAINER: ViewStyle = {
- marginRight: spacing[4] - 1,
- marginTop: spacing[2],
-}
-const BULLET: ImageStyle = {
- width: 8,
- height: 8,
-}
-const BULLET_TEXT: TextStyle = {
- flex: 1,
- fontFamily: typography.primary,
- color: '#BAB6C8',
- fontSize: 15,
- lineHeight: 22,
-}
-
-export interface BulletItemProps {
- text: string
-}
-
-export function BulletItem(props: BulletItemProps) {
- return (
- <View style={BULLET_ITEM}>
- <Icon icon="bullet" containerStyle={BULLET_CONTAINER} style={BULLET} />
- <Text style={BULLET_TEXT} text={props.text} />
- </View>
- )
-}