Add KanbanView. Move icons. (#143)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov
2021-09-06 18:00:43 +02:00
committed by GitHub
parent e9f12766c1
commit bb08165fef
26 changed files with 417 additions and 184 deletions
@@ -15,8 +15,7 @@
<script lang="ts">
import type { IntlString } from '@anticrm/platform'
import { ActionIcon } from '@anticrm/ui'
import MoreH from './icons/MoreH.svelte'
import { ActionIcon, IconMoreH } from '@anticrm/ui'
export let label: IntlString
export let action: () => Promise<void>
@@ -24,7 +23,7 @@
<div class="container">
<span class="overflow-label label">{label}</span>
<ActionIcon label={'More...'} icon={MoreH} size={'small'} {action}/>
<ActionIcon label={'More...'} icon={IconMoreH} size={'small'} {action}/>
</div>
<style lang="scss">