18
src/components/events/kyc/kyc-failed.dialog.view.tsx
Normal file
18
src/components/events/kyc/kyc-failed.dialog.view.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { X } from 'lucide-react';
|
||||
import { DialogContent, DialogDescription, DialogHeader, DialogTitle } from '../../ui/dialog';
|
||||
|
||||
export function KycFailedDialogView() {
|
||||
return (
|
||||
<DialogContent className="max-w-md">
|
||||
<DialogHeader>
|
||||
<DialogTitle>失败</DialogTitle>
|
||||
<DialogDescription>
|
||||
<p>提交身份认证失败,请重试。</p>
|
||||
<div className="flex justify-center my-12">
|
||||
<X size={100} />
|
||||
</div>
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
</DialogContent>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user