The attribute available for bool type of parameter
bool
[Parameter][BooleanCssClass("trueCss", "falseCss")]public bool? Active { get; set; }
<Component /> <div></div> <Component Active /> <div class="trueCss"></div> <Component Active="false" /> <div class="falseCss"></div>
Last updated 1 year ago