mirror of
https://github.com/imputnet/cobalt.git
synced 2026-01-04 14:01:24 +00:00
web: omnibox base with meowbalt
This commit is contained in:
15
web/src/components/save/buttons/ClearButton.svelte
Normal file
15
web/src/components/save/buttons/ClearButton.svelte
Normal file
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user