- 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
28 lines
765 B
Svelte
28 lines
765 B
Svelte
<script lang="ts">
|
|
export let classString = "h-6 w-6"
|
|
</script>
|
|
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
class={classString}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
stroke="currentColor"
|
|
>
|
|
<path d="M10 12V17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
<path d="M14 12V17" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
<path d="M4 7H20" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
<path
|
|
d="M6 10V18C6 19.6569 7.34315 21 9 21H15C16.6569 21 18 19.6569 18 18V10"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M9 5C9 3.89543 9.89543 3 11 3H13C14.1046 3 15 3.89543 15 5V7H9V5Z"
|
|
stroke-width="2"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|