LabelComponent.razor 235 B

123456789
  1. @inherits DialogBaseComponent<LabelControl>
  2. <div style="@GetStyle">@Control.Text</div>
  3. @code {
  4. protected override string GetStyle
  5. => base.GetStyle + GetControlAlign() + "white-space: pre-wrap;line-height: normal;";
  6. }