我正在尝试将编辑图标按钮放在卡片的右侧。我想实现如下图所示。请查看此沙箱链接以获取我当前的输出
<CardHeader
classes={{
title: classes.title
}}
className={classes.cardHeader}
title={"John Smith"}
subheader={
<h2 style={{ color: "white", textAlign: "center" }}>
User
</h2>
}
/>
<Button
variant="contained"
color="secondary"
className={classes.editButton}
startIcon={<EditIcon />}
/>