17 lines
496 B
TypeScript
17 lines
496 B
TypeScript
import { UserLock } from 'lucide-react';
|
|
import { Empty, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '../ui/empty';
|
|
|
|
export function ProfileError({ reason }: { reason: string }) {
|
|
return (
|
|
<Empty className="h-full">
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<UserLock />
|
|
</EmptyMedia>
|
|
<EmptyTitle>无法查看此个人资料</EmptyTitle>
|
|
<EmptyDescription>{reason}</EmptyDescription>
|
|
</EmptyHeader>
|
|
</Empty>
|
|
);
|
|
}
|