2021-08-06 08:31:17 +00:00
|
|
|
<!--
|
|
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
|
|
//
|
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-08-14 11:42:31 +00:00
|
|
|
import type { IntlString } from '@anticrm/platform'
|
2021-11-29 10:06:53 +00:00
|
|
|
import { ActionIcon, IconMoreH, Label } from '@anticrm/ui'
|
|
|
|
import workbench from '../plugin'
|
2021-08-06 08:31:17 +00:00
|
|
|
|
2021-08-14 11:42:31 +00:00
|
|
|
export let label: IntlString
|
2021-12-06 09:12:58 +00:00
|
|
|
// export let action: () => Promise<void> | void
|
2021-08-06 08:31:17 +00:00
|
|
|
</script>
|
|
|
|
|
2022-01-21 09:07:24 +00:00
|
|
|
<div class="flex-between navheader-container flex-no-shrink">
|
2021-12-06 09:12:58 +00:00
|
|
|
<span class="fs-title overflow-label"><Label {label}></Label></span>
|
|
|
|
<!-- <ActionIcon label={workbench.string.More} icon={IconMoreH} size={'small'} {action}/> -->
|
2021-08-06 08:31:17 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2021-12-06 09:12:58 +00:00
|
|
|
.navheader-container {
|
2021-08-14 11:42:31 +00:00
|
|
|
padding: 0 1.75rem;
|
2021-12-06 09:12:58 +00:00
|
|
|
height: 4rem;
|
2021-08-06 08:31:17 +00:00
|
|
|
}
|
2021-08-14 11:42:31 +00:00
|
|
|
</style>
|