2020-02-20 18:06:50 +01:00
|
|
|
<script>
|
2020-02-25 16:21:23 +01:00
|
|
|
import { buildStyle } from "./buildStyle"
|
2020-02-20 18:06:50 +01:00
|
|
|
|
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-25 16:21:23 +01:00
|
|
|
$: style = buildStyle({ height, width })
|
2020-02-20 18:06:50 +01:00
|
|
|
</script>
|
|
|
|
|
2020-02-25 16:21:23 +01:00
|
|
|
<img class={className} {style} src={url} alt={description} />
|