1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
import React from 'react'
import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native'
import {IconProp} from '@fortawesome/fontawesome-svg-core'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {Text} from './text/Text'
import {UserGroupIcon} from '../../lib/icons'
import {usePalette} from '../../lib/hooks/usePalette'
export function EmptyState({
icon,
message,
style,
}: {
icon: IconProp | 'user-group'
message: string
style?: StyleProp<ViewStyle>
}) {
const pal = usePalette('default')
return (
<View style={[styles.container, style]}>
<View style={styles.iconContainer}>
{icon === 'user-group' ? (
<UserGroupIcon size="64" style={styles.icon} />
) : (
<FontAwesomeIcon
icon={icon}
size={64}
style={[styles.icon, pal.textLight]}
/>
)}
</View>
<Text type="xl" style={[pal.textLight, styles.text]}>
{message}
</Text>
</View>
)
}
const styles = StyleSheet.create({
container: {
paddingVertical: 20,
paddingHorizontal: 36,
},
iconContainer: {
flexDirection: 'row',
},
icon: {
marginLeft: 'auto',
marginRight: 'auto',
},
text: {
textAlign: 'center',
paddingTop: 16,
},
})
|