mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 18:08:28 +00:00

- omnibox is now fully usable with a screen reader - back button is now interpreted as such - subtext now accepts line breaks
18 lines
389 B
Svelte
18 lines
389 B
Svelte
<script>
|
|
import { t } from "$lib/i18n/translations";
|
|
import IconX from '@tabler/icons-svelte/IconX.svelte';
|
|
|
|
export let click;
|
|
</script>
|
|
|
|
<button id="clear-button" on:click={click} aria-label={$t("a11y.save.clearInput")}>
|
|
<IconX color="var(--secondary)" size="16px"/>
|
|
</button>
|
|
|
|
<style>
|
|
#clear-button {
|
|
padding: 3px;
|
|
border-radius: 100%;
|
|
}
|
|
</style>
|