-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathEmptyMyPoolList.tsx
More file actions
33 lines (27 loc) · 836 Bytes
/
EmptyMyPoolList.tsx
File metadata and controls
33 lines (27 loc) · 836 Bytes
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
import { Row, Text, Pressable } from 'native-base';
interface Props {
code: string;
}
export function EmptyMyPoolList({ code }: Props) {
return (
<Row flexWrap="wrap" justifyContent="center" p={4}>
<Text color="gray.200" fontSize="sm">
Esse bolão ainda não tem participantes, que tal
</Text>
<Pressable onPress={() => {}}>
<Text textDecorationLine="underline" color="yellow.500" textDecoration="underline">
compartilhar o código
</Text>
</Pressable>
<Text color="gray.200" fontSize="sm" mx={1}>
do bolão com alguém?
</Text>
<Text color="gray.200" mr={1}>
Use o código
</Text>
<Text color="gray.200" fontSize="sm" textAlign="center" fontFamily="heading">
{code}
</Text>
</Row>
);
}