I put two icons from Material UI Icons in a row. The heights themselves are same: 24px. But the height of path is different. One is 18px and the other is 22px. They don't look cool.
How can I adjust the height? I mean "the height that users see".
import {
Delete,
FileCopy
} from "@material-ui/icons";
...
<Box display="flex">
<FileCopy onClick={handleCopy} />
<Delete onClick={handleDelete} />
</Box>
I tried setting the the height of SVG, it made vertical align ugly...