材质用户界面-对齐图标以使“版式"文本居中

问题描述:

如何将图标与文本对齐.到目前为止,我看到该图标位于文本的顶部.我尝试使用 padding-top:5px margin-top:5px ,但这似乎无法正常工作.

How do I align icon to the same level as the text. As of now, I see the icon is at little top to the text. I tried to use padding-top: 5px and also margin-top: 5px but that does not seem to work as expected.

  <Box>
    <Typography variant="h2">
      Photography <FaCamera />
    </Typography>
  </Box>

我使用 Stackblitz 一个>.谁能帮忙吗?

我能够使用CSS的 position top 属性正确对齐它.

I was able to align it correctly using position and top properties of CSS.

<Box>
  <Typography variant="h2">
    Photography <FaCamera style={{position: 'relative', top: '8px'}} />
  </Typography>
</Box>