mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 02:25:59 +00:00
22 lines
408 B
Svelte
22 lines
408 B
Svelte
<script lang="ts">
|
|
import FontIcon from '../icons/FontIcon.svelte';
|
|
|
|
import InlineButton from './InlineButton.svelte';
|
|
|
|
export let filter;
|
|
export let showDisabled = false;
|
|
</script>
|
|
|
|
{#if filter || showDisabled}
|
|
<InlineButton
|
|
on:click
|
|
on:click={() => {
|
|
filter = '';
|
|
}}
|
|
title="Clear filter"
|
|
disabled={!filter}
|
|
>
|
|
<FontIcon icon="icon close" />
|
|
</InlineButton>
|
|
{/if}
|