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.
51 lines
905 B
51 lines
905 B
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
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>
|
|
`;
|
|
|
|
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>
|
|
`;
|
|
|