blob: e25610b24b07d5801cd0bac0724f93c3038da252 [file] [log] [blame]
import { Box, Card, CardContent, Typography } from '@mui/material';
export default function JamiIdCard(props) {
const account = props.account;
const registeredName = account.getRegisteredName();
return (
<Card style={{ marginBottom: 16 }}>
<CardContent>
<Box>
<Typography color="textSecondary">Jami ID</Typography>
<Typography variant="h5" component="h2" gutterBottom noWrap>
{account.getUri()}
</Typography>
</Box>
{registeredName && (
<Box>
<Typography color="textSecondary">Jami username</Typography>
<Typography variant="h5" component="h2" noWrap>
{registeredName}
</Typography>
</Box>
)}
</CardContent>
</Card>
);
}