// components/profile-info-display.tsx import React from "react"; interface ProfileInfoProps { label: string; value?: string | null; } const ProfileInfo = (props: ProfileInfoProps) => { return (
{props.label} {props.value || "-"}
); }; export default ProfileInfo;