radames's picture
UI improvements
a439de3
raw
history blame
342 Bytes
<script lang="ts">
import Undo from '$lib/Icons/Undo.svelte';
export let isActive = false;
export let isLoading = false;
</script>
<button
on:click
disabled={isLoading}
class="bg-white rounded-full p-2 {isActive ? 'text-blue-700' : 'text-gray-800'}"
title="Clear Masking"
>
<Undo />
</button>
<style lang="postcss" scoped>
</style>