blob: 16e13bcd68015bfa44cdb297087da856c5cabad6 [file] [log] [blame]
Israel Lavi1994c982018-05-21 17:42:00 +03001// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`Button Button - Default - Gray 1`] = `
4<button
5 className="sdc-button sdc-button__primary "
6 color="gray"
7 disabled={false}
8 onClick={undefined}
9>
10 Click Me
11</button>
12`;
13
14exports[`Button Button - Default - Negative 1`] = `
15<button
16 className="sdc-button sdc-button__primary "
17 color="negative"
18 disabled={false}
19 onClick={undefined}
20>
21 Click Me
22</button>
23`;
24
25exports[`Button Button - Default - Positive 1`] = `
26<button
27 className="sdc-button sdc-button__primary "
28 color="positive"
29 disabled={false}
30 onClick={undefined}
31>
32 Click Me
33</button>
34`;
35
36exports[`Button Button - Default - Primary - Disabled 1`] = `
37<button
38 className="sdc-button sdc-button__primary "
39 disabled={true}
40 onClick={undefined}
41>
42 Click Me
43</button>
44`;
45
46exports[`Button Button - Default - Primary 1`] = `
47<button
48 className="sdc-button sdc-button__primary "
49 disabled={false}
50 onClick={undefined}
51>
52 Click Me
53</button>
54`;
55
56exports[`Button Button - Default - Warning 1`] = `
57<button
58 className="sdc-button sdc-button__primary "
59 color="warning"
60 disabled={false}
61 onClick={undefined}
62>
63 Click Me
64</button>
65`;
66
67exports[`Button Button - Default - White 1`] = `
68<button
69 className="sdc-button sdc-button__primary "
70 color="white"
71 disabled={false}
72 onClick={undefined}
73>
74 Click Me
75</button>
76`;
77
78exports[`Button Button - Link - Primary - Disabled 1`] = `
79<button
80 className="sdc-button sdc-button__link "
81 color="primary"
82 disabled={true}
83 onClick={undefined}
84>
85 Click Me
86</button>
87`;
88
89exports[`Button Button - Link - Primary - With Icon 1`] = `
90<button
91 className="sdc-button sdc-button__link plus"
92 color="primary"
93 disabled={false}
94 onClick={undefined}
95>
96 <div
97 className="svg-icon-wrapper right"
98 disabled={undefined}
99 onClick={undefined}
100 >
101 <svg />
102 <span
103 className="svg-icon-label "
104 >
105 Click Me
106 </span>
107 </div>
108</button>
109`;
110
111exports[`Button Button - Link - Primary 1`] = `
112<button
113 className="sdc-button sdc-button__link "
114 color="primary"
115 disabled={false}
116 onClick={undefined}
117>
118 Click Me
119</button>
120`;
121
122exports[`Button Button - Outline - Gray 1`] = `
123<button
124 className="sdc-button sdc-button__outline "
125 color="gray"
126 disabled={false}
127 onClick={undefined}
128>
129 Click Me
130</button>
131`;
132
133exports[`Button Button - Outline - Negative 1`] = `
134<button
135 className="sdc-button sdc-button__outline "
136 color="negative"
137 disabled={false}
138 onClick={undefined}
139>
140 Click Me
141</button>
142`;
143
144exports[`Button Button - Outline - Positive 1`] = `
145<button
146 className="sdc-button sdc-button__outline "
147 color="positive"
148 disabled={false}
149 onClick={undefined}
150>
151 Click Me
152</button>
153`;
154
155exports[`Button Button - Outline - Primary 1`] = `
156<button
157 className="sdc-button sdc-button__outline "
158 disabled={false}
159 onClick={undefined}
160>
161 Click Me
162</button>
163`;