feat: añadir Hourglass.svelte y usarlo en TaskItem.svelte
Co-authored-by: aider (openrouter/openai/gpt-5) <aider@aider.chat>webui
parent
5f03caace6
commit
4bb8b1d93b
@ -0,0 +1,27 @@
|
||||
<script lang="ts">
|
||||
export let size: number = 16;
|
||||
export let className: string = '';
|
||||
export let ariaLabel?: string;
|
||||
export let title?: string;
|
||||
</script>
|
||||
|
||||
<svg
|
||||
width={size}
|
||||
height={size}
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
class={className}
|
||||
role={ariaLabel ? 'img' : undefined}
|
||||
aria-label={ariaLabel}
|
||||
aria-hidden={ariaLabel ? undefined : 'true'}
|
||||
>
|
||||
{#if title}<title>{title}</title>{/if}
|
||||
<path d="M6 2h12" />
|
||||
<path d="M6 22h12" />
|
||||
<path d="M8 4l8 8" />
|
||||
<path d="M8 20l8-8" />
|
||||
</svg>
|
||||
Loading…
Reference in New Issue