|
|
@ -43,15 +43,27 @@ ReactDOM.render(
|
|
|
|
</Text>
|
|
|
|
</Text>
|
|
|
|
</Paragraph>
|
|
|
|
</Paragraph>
|
|
|
|
<Paragraph>
|
|
|
|
<Paragraph>
|
|
|
|
<CloseCircleOutlined style={{ color: 'red' }} /> Your account has been frozen
|
|
|
|
<CloseCircleOutlined className="site-result-demo-error-icon" /> Your account has been frozen
|
|
|
|
<a>Thaw immediately ></a>
|
|
|
|
<a>Thaw immediately ></a>
|
|
|
|
</Paragraph>
|
|
|
|
</Paragraph>
|
|
|
|
<Paragraph>
|
|
|
|
<Paragraph>
|
|
|
|
<CloseCircleOutlined style={{ color: 'red' }} /> Your account is not yet eligible to apply{' '}
|
|
|
|
<CloseCircleOutlined className="site-result-demo-error-icon" /> Your account is not yet
|
|
|
|
<a>Apply Unlock ></a>
|
|
|
|
eligible to apply <a>Apply Unlock ></a>
|
|
|
|
</Paragraph>
|
|
|
|
</Paragraph>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Result>,
|
|
|
|
</Result>,
|
|
|
|
mountNode,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
);
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```css
|
|
|
|
|
|
|
|
.site-result-demo-error-icon {
|
|
|
|
|
|
|
|
color: red;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
[data-theme="dark"] .site-result-demo-error-icon {
|
|
|
|
|
|
|
|
color: #a61d24;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|