You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
905 B
52 lines
905 B
6 years ago
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
5 years ago
|
exports[`Statistic rtl render component should be rendered correctly in RTL direction 1`] = `
|
||
|
<div
|
||
|
class="ant-statistic ant-statistic-rtl"
|
||
|
>
|
||
|
<div
|
||
|
class="ant-statistic-content"
|
||
|
>
|
||
|
<span
|
||
|
class="ant-statistic-content-value"
|
||
|
>
|
||
|
<span
|
||
|
class="ant-statistic-content-value-int"
|
||
|
>
|
||
|
0
|
||
|
</span>
|
||
|
</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|
||
|
|
||
6 years ago
|
exports[`Statistic support negetive number 1`] = `
|
||
|
<div
|
||
|
class="ant-statistic"
|
||
|
>
|
||
|
<div
|
||
|
class="ant-statistic-title"
|
||
|
>
|
||
|
Account Balance (CNY)
|
||
|
</div>
|
||
|
<div
|
||
|
class="ant-statistic-content"
|
||
|
>
|
||
|
<span
|
||
|
class="ant-statistic-content-value"
|
||
|
>
|
||
|
<span
|
||
|
class="ant-statistic-content-value-int"
|
||
|
>
|
||
|
-112,893
|
||
|
</span>
|
||
|
<span
|
||
|
class="ant-statistic-content-value-decimal"
|
||
|
>
|
||
|
.12
|
||
|
</span>
|
||
|
</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|