qnote/web/src/lib/icons/ChevronUp.svelte
ae 09a4a74c42
feat: UI/UX & logic upgrades
- 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
2025-05-01 13:57:27 +03:00

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>