diff options
author | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
---|---|---|
committer | Kirill Rogovoy <[email protected]> | 2021-07-19 20:06:08 +0300 |
commit | f0bf4e7afdcd8b02a62be45ab3e7d047ed865a79 (patch) | |
tree | 575c0ff2cbb846252bd2e494c81c396846aab2f6 /app/components/bullet-item/bullet-item.tsx | |
parent | 67ad38d0a7cd319623e9f41c0c381ed5c5f6f973 (diff) |
Apply Prettier
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, } |