I have three elements, first two elements are columns while the last is a row. Tried a couple of different things but I`m not able to get the result I desire
.container {
display: flex;
flex-direction: column;
}
.element {
display: flex;
}
.icon {
display: flex margin-left: auto;
align-content: center;
}
<div className="container">
<div className="element">Name Detail</div>
<div className="element">Salary Detail</div>
<div className="icon">(Here is a svg)</div>
</div>