feat: update createUser style

This commit is contained in:
fantasticit 2022-05-06 23:58:26 +08:00
parent 833e845503
commit bb814f93a8
1 changed files with 3 additions and 3 deletions

View File

@ -53,12 +53,12 @@ const RecentDocs = () => {
key="createUser" key="createUser"
render={(createUser) => { render={(createUser) => {
return ( return (
<div> <span>
<Avatar size="small" src={createUser.avatar} style={{ marginRight: 4 }}> <Avatar size="extra-extra-small" src={createUser.avatar} style={{ marginRight: 4 }}>
{createUser.name.slice(0, 1)} {createUser.name.slice(0, 1)}
</Avatar> </Avatar>
{createUser.name} {createUser.name}
</div> </span>
); );
}} }}
/>, />,