How to pass dynamic CSS property
{{test-component height=height}}
test-component.hbs
<div class="flip-container ">
<div class="flipper">
<div class="front">
RED SIDE
</div>
<div class="back">
BLUE SIDE
</div>
</div>
</div>
Suppose I want to modify this CSS property
.flip-container, .front, .back {
width: 10em;
height: 20em;
}
I have seen bind-attr helper , but now it's deprecated.