feat: add up to top icon (#33)

This commit is contained in:
Vojtech Simetka 2022-11-30 18:55:01 +01:00 committed by GitHub
parent 7afd5b8535
commit ef72a347eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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>