snort/src/element/ProfilePreview.js
2023-01-12 12:00:44 +00:00

23 lines
685 B
JavaScript

import "./ProfilePreview.css";
import ProfileImage from "./ProfileImage";
import FollowButton from "./FollowButton";
import useProfile from "../feed/ProfileFeed";
export default function ProfilePreview(props) {
const pubkey = props.pubkey;
const user = useProfile(pubkey);
const options = {
about: true,
...props.options
};
return (
<div className="profile-preview">
<ProfileImage pubkey={pubkey} subHeader=
{options.about ? <div className="f-ellipsis about">
{user?.about}
</div> : null} />
<FollowButton pubkey={pubkey} className="ml5" />
</div>
)
}