| 123456789101112131415161718192021222324252627282930313233343536 |
- @using VberZero.Tools.StringModel
- @model VberAdmin.Web.Models.Modals.VmModalHeader
- <div class="modal-header py-3 ">
- <h3 class="modal-title">
- @if (Model != null)
- {
- @if (Model.Content.Empty())
- {
- if (Model.PreFix!=null)
- {
- <span class="pre">@Html.Raw(Model.PreFix)</span>
- }
- @Html.Raw(Model.Title)
- <span class="sub">@Html.Raw(Model.SubFix)</span>
- }
- else
- {
- @Html.Raw(Model.Content)
- }
- }
-
- </h3>
- <!--begin::Close-->
- <div class="btn btn-icon btn-sm btn-active-light-primary ms-2" data-bs-dismiss="modal" aria-label="Close">
- <!--Svg Icon | path: icons/duotone/Navigation/Close.svg-->
- <span class="svg-icon svg-icon-2x">
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
- <g transform="translate(12.000000, 12.000000) rotate(-45.000000) translate(-12.000000, -12.000000) translate(4.000000, 4.000000)" fill="#000000">
- <rect fill="#000000" x="0" y="7" width="16" height="2" rx="1"></rect>
- <rect fill="#000000" opacity="0.5" transform="translate(8.000000, 8.000000) rotate(-270.000000) translate(-8.000000, -8.000000)" x="0" y="7" width="16" height="2" rx="1"></rect>
- </g>
- </svg>
- </span>
- </div>
- <!--end::Close-->
- </div>
|