- fix: markdown preview (especially lists) - feat: markdown codeblock syntax highlighting - feat: UI style/layout (CSS, favicons) - feat: noscript tag - refactor: component organization (dir. structure) - feat: improved client caching logic - fix: focus-none on button click
13 lines
276 B
Svelte
13 lines
276 B
Svelte
<script lang="ts">
|
|
export let classString = "h-6 w-6"
|
|
</script>
|
|
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
class={classString}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
stroke="currentColor"
|
|
>
|
|
<path d="M6 15L12 9L18 15" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
</svg>
|