mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-27 12:04:56 +02:00
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
11 lines
317 B
Svelte
11 lines
317 B
Svelte
<script lang="ts">
|
|
import { IconSearch, StatusBarButton, showPopup } from '@hcengineering/ui'
|
|
import ActionsPopup from './ActionsPopup.svelte'
|
|
|
|
function openPopup (): void {
|
|
showPopup(ActionsPopup, {}, 'top')
|
|
}
|
|
</script>
|
|
|
|
<StatusBarButton id={'statusbar-search'} on:click={openPopup} icon={IconSearch} />
|