mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-19 11:17:27 +00:00
feat: add up to top icon (#33)
This commit is contained in:
parent
7afd5b8535
commit
ef72a347eb
14
src/lib/components/icons/up-to-top.svelte
Normal file
14
src/lib/components/icons/up-to-top.svelte
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import type { IconProps } from '$lib/types'
|
||||||
|
|
||||||
|
type $$Props = IconProps
|
||||||
|
|
||||||
|
let cls: string | undefined = undefined
|
||||||
|
export { cls as class }
|
||||||
|
export let size = 20
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width={size} height={size} class={cls}>
|
||||||
|
<polygon points="16,14 6,24 7.4,25.4 16,16.8 24.6,25.4 26,24 " />
|
||||||
|
<rect x="4" y="8" width="24" height="2" />
|
||||||
|
</svg>
|
Loading…
x
Reference in New Issue
Block a user