You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
257 B
Svelte

<script lang="ts">
export let src: string;
export let alt: string;
export let href: string;
</script>
<a {href}>
<img {src} {alt} />
</a>
<style lang="scss">
a {
padding: 15px;
img {
height: 50px;
width: auto;
}
}
</style>