Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
253 Bytes
// @flow
import * as React from "react";
type Props = {|
+avatarURL: string,
|};
function ProfileImage({ avatarURL }: Props): React.Node {
return <img className="card-profile-img" alt="Profile" src={avatarURL} />;
}
export default ProfileImage;