blob: 68c4e6cdc77f348f5481b27a67495faffd4892f3 [file] [log] [blame]
import React from 'react';
import { Box, Card, CardContent, Typography } from '@mui/material';
import makeStyles from '@mui/styles/makeStyles';
const useStyles = makeStyles({
title: {
fontSize: 14,
}, pos: {
fontSize: 14,
}
});
export default function JamiIdCard(props) {
const classes = useStyles()
const account = props.account
const registeredName = account.getRegisteredName()
return <Card style={{marginBottom:16}}>
<CardContent>
<Box>
<Typography className={classes.title} color="textSecondary">
Jami ID
</Typography>
<Typography variant="h5" component="h2" gutterBottom noWrap>{account.getUri()}</Typography>
</Box>
{registeredName && <Box>
<Typography className={classes.title} color="textSecondary" >
Jami username
</Typography>
<Typography variant="h5" component="h2" noWrap>{registeredName}</Typography>
</Box>
}
</CardContent>
</Card>
}