2020-02-20 18:06:50 +01:00
|
|
|
<script>
|
2020-02-25 16:21:23 +01:00
|
|
|
export let className = ""
|
|
|
|
export let url = ""
|
|
|
|
export let description = ""
|
|
|
|
export let height
|
|
|
|
export let width
|
2020-02-20 18:06:50 +01:00
|
|
|
|
2020-06-09 12:06:18 +02:00
|
|
|
export let _bb
|
2020-02-20 18:06:50 +01:00
|
|
|
</script>
|
|
|
|
|
2020-11-13 16:42:32 +01:00
|
|
|
<img {height} {width} class={className} src={url} alt={description} />
|