We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cf5b32 commit ed48e74Copy full SHA for ed48e74
source/views/components/markdown/list.js
@@ -2,7 +2,7 @@
2
3
import * as React from 'react'
4
import glamorous, {View, Text} from 'glamorous-native'
5
-import {Paragraph} from './formatting'
+import {BaseText, Paragraph} from './formatting'
6
7
// the list itself
8
export const List = glamorous(View)({})
@@ -21,7 +21,7 @@ export class ListItem extends React.PureComponent<Props> {
21
render() {
22
return (
23
<View alignItems="center" flexDirection="row">
24
- <Text paddingRight={4}>• </Text>
+ <BaseText paddingRight={4}>• </BaseText>
25
<ListText {...this.props} />
26
</View>
27
)
0 commit comments