import { IdcardOutlined } from "@ant-design/icons"; import React from "react"; interface IdCardProps extends React.HTMLProps { id: string; } export default function IdCard({ id, ...rest }: IdCardProps) { return (
{id ? (
{id}
) : ( 未录入证件号 )}
); }