diff options
Diffstat (limited to 'app/components/bullet-item/bullet-item.tsx')
-rw-r--r-- | app/components/bullet-item/bullet-item.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/components/bullet-item/bullet-item.tsx b/app/components/bullet-item/bullet-item.tsx index d999e10..f6b2f17 100644 --- a/app/components/bullet-item/bullet-item.tsx +++ b/app/components/bullet-item/bullet-item.tsx @@ -1,15 +1,15 @@ -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" +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", + flexDirection: 'row', marginTop: spacing[4], paddingBottom: spacing[4], borderBottomWidth: 1, - borderBottomColor: "#3A3048", + borderBottomColor: '#3A3048', } const BULLET_CONTAINER: ViewStyle = { marginRight: spacing[4] - 1, @@ -22,7 +22,7 @@ const BULLET: ImageStyle = { const BULLET_TEXT: TextStyle = { flex: 1, fontFamily: typography.primary, - color: "#BAB6C8", + color: '#BAB6C8', fontSize: 15, lineHeight: 22, } |