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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
import {Fragment} from 'react'
import {View} from 'react-native'
import {atoms as a} from '#/alf'
import {
Button,
type ButtonColor,
ButtonIcon,
type ButtonSize,
ButtonText,
} from '#/components/Button'
import {ChevronLeft_Stroke2_Corner0_Rounded as ChevronLeft} from '#/components/icons/Chevron'
import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe'
import {Text} from '#/components/Typography'
export function Buttons() {
return (
<View style={[a.gap_md]}>
<Text style={[a.font_heavy, a.text_5xl]}>Buttons</Text>
{[
'primary',
'secondary',
'secondary_inverted',
'negative',
'primary_subtle',
'negative_subtle',
].map(color => (
<Fragment key={color}>
{['tiny', 'small', 'large'].map(size => (
<Fragment key={size}>
<Text style={[a.font_heavy, a.text_2xl]}>
color={color} size={size}
</Text>
<View style={[a.flex_row, a.align_start, a.gap_md]}>
<Button
color={color as ButtonColor}
size={size as ButtonSize}
label="Click here">
<ButtonText>Button</ButtonText>
</Button>
<Button
disabled
color={color as ButtonColor}
size={size as ButtonSize}
label="Click here">
<ButtonText>Button</ButtonText>
</Button>
<Button
color={color as ButtonColor}
size={size as ButtonSize}
shape="round"
label="Click here">
<ButtonIcon icon={ChevronLeft} />
</Button>
<Button
color={color as ButtonColor}
size={size as ButtonSize}
shape="square"
label="Click here">
<ButtonIcon icon={ChevronLeft} />
</Button>
</View>
<View style={[a.flex_row, a.gap_md]}>
<Button
color={color as ButtonColor}
size={size as ButtonSize}
label="Click here">
<ButtonIcon icon={Globe} position="left" />
<ButtonText>Button</ButtonText>
</Button>
<Button
disabled
color={color as ButtonColor}
size={size as ButtonSize}
label="Click here">
<ButtonText>Button</ButtonText>
<ButtonIcon icon={Globe} position="right" />
</Button>
</View>
</Fragment>
))}
</Fragment>
))}
</View>
)
}
|