-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathButtonVariantTestSection.tsx
53 lines (50 loc) · 1.92 KB
/
ButtonVariantTestSection.tsx
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
import * as React from 'react';
import { View } from 'react-native';
import { ButtonV1 as Button, CompoundButton, FAB } from '@fluentui-react-native/button';
import { iconProps } from '../Common/iconExamples';
import { commonTestStyles, testContentRootViewStyle } from '../Common/styles';
// Test also pulls button from deprecated package to ensure it's still working
export const ButtonVariantTest: React.FunctionComponent = () => {
return (
<View style={testContentRootViewStyle}>
<Button style={commonTestStyles.vmargin}>Default</Button>
<Button disabled style={commonTestStyles.vmargin}>
Default Disabled
</Button>
<Button appearance="primary" style={commonTestStyles.vmargin}>
Primary
</Button>
<Button disabled appearance="primary" style={commonTestStyles.vmargin}>
Primary Disabled
</Button>
<Button appearance="subtle" style={commonTestStyles.vmargin}>
Subtle
</Button>
<Button disabled appearance="subtle" style={commonTestStyles.vmargin}>
Subtle Disabled
</Button>
<Button loading>Loading Button</Button>
<Button block style={commonTestStyles.vmargin}>
Block
</Button>
<Button appearance="primary" block style={commonTestStyles.vmargin}>
Block Primary
</Button>
<Button appearance="subtle" block style={commonTestStyles.vmargin}>
Block Subtle
</Button>
<CompoundButton secondaryContent="Compound" style={commonTestStyles.vmargin}>
Default
</CompoundButton>
<CompoundButton appearance="primary" secondaryContent="Compound" style={commonTestStyles.vmargin}>
Primary
</CompoundButton>
<CompoundButton appearance="subtle" secondaryContent="Compound" style={commonTestStyles.vmargin}>
Subtle
</CompoundButton>
<FAB icon={iconProps} style={commonTestStyles.vmargin}>
FAB
</FAB>
</View>
);
};