mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 09:58:27 +00:00
16 lines
300 B
Svelte
16 lines
300 B
Svelte
<script>
|
|
export let click;
|
|
import IconX from '@tabler/icons-svelte/IconX.svelte';
|
|
</script>
|
|
|
|
<button id="clear-button" on:click={click}>
|
|
<IconX color="var(--secondary)" size="16px"/>
|
|
</button>
|
|
|
|
<style>
|
|
#clear-button {
|
|
padding: 3px;
|
|
border-radius: 100%;
|
|
}
|
|
</style>
|