File tree Expand file tree Collapse file tree 3 files changed +28
-26
lines changed
examples/expo-example/components/LoginDocsExample Expand file tree Collapse file tree 3 files changed +28
-26
lines changed Original file line number Diff line number Diff line change @@ -13,50 +13,50 @@ export default meta;
13
13
type Story = StoryObj < typeof meta > ;
14
14
15
15
export const Primary : Story = {
16
- args : {
17
- title : 'Sign In'
16
+ args : {
17
+ title : 'Sign In' ,
18
18
} ,
19
19
} ;
20
20
21
21
export const Secondary : Story = {
22
- args : {
23
- title : 'Create Account' ,
24
- variant : 'secondary'
22
+ args : {
23
+ title : 'Create Account' ,
24
+ variant : 'secondary' ,
25
25
} ,
26
26
} ;
27
27
28
28
export const Loading : Story = {
29
- args : {
30
- title : 'Sign In' ,
31
- loading : true
29
+ args : {
30
+ title : 'Sign In' ,
31
+ loading : true ,
32
32
} ,
33
33
} ;
34
34
35
35
export const Disabled : Story = {
36
- args : {
37
- title : 'Sign In' ,
38
- disabled : true
36
+ args : {
37
+ title : 'Sign In' ,
38
+ disabled : true ,
39
39
} ,
40
40
} ;
41
41
42
42
export const SecondaryLoading : Story = {
43
- args : {
44
- title : 'Create Account' ,
43
+ args : {
44
+ title : 'Create Account' ,
45
45
variant : 'secondary' ,
46
- loading : true
46
+ loading : true ,
47
47
} ,
48
48
} ;
49
49
50
50
export const SecondaryDisabled : Story = {
51
- args : {
52
- title : 'Create Account' ,
51
+ args : {
52
+ title : 'Create Account' ,
53
53
variant : 'secondary' ,
54
- disabled : true
54
+ disabled : true ,
55
55
} ,
56
56
} ;
57
57
58
58
export const LongTitle : Story = {
59
- args : {
60
- title : 'This is a very long button title that might affect layout'
59
+ args : {
60
+ title : 'This is a very long button title that might affect layout' ,
61
61
} ,
62
- } ;
62
+ } ;
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ export const WithErrors: Story = {
22
22
} ;
23
23
24
24
export const Loading : Story = {
25
- args : {
26
- loading : true
25
+ args : {
26
+ loading : true ,
27
27
} ,
28
28
} ;
29
29
@@ -41,7 +41,9 @@ export const PasswordErrorOnly: Story = {
41
41
42
42
export const LongErrors : Story = {
43
43
args : {
44
- emailError : 'The email address you entered is not valid. Please check the format and try again.' ,
45
- passwordError : 'Your password must be at least 8 characters long and contain both letters and numbers for security.' ,
44
+ emailError :
45
+ 'The email address you entered is not valid. Please check the format and try again.' ,
46
+ passwordError :
47
+ 'Your password must be at least 8 characters long and contain both letters and numbers for security.' ,
46
48
} ,
47
- } ;
49
+ } ;
Original file line number Diff line number Diff line change @@ -74,4 +74,4 @@ export const EmptyState: Story = {
74
74
label : '' ,
75
75
placeholder : '' ,
76
76
} ,
77
- } ;
77
+ } ;
You can’t perform that action at this time.
0 commit comments