19 lines
298 B
Svelte
19 lines
298 B
Svelte
|
<script>
|
||
|
|
||
|
import { buildStyle } from "./buildStyle"
|
||
|
|
||
|
export let className = "";
|
||
|
export let url = "";
|
||
|
export let description = ""
|
||
|
export let height
|
||
|
export let width
|
||
|
|
||
|
$: style = buildStyle({height, width})
|
||
|
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<img class={className}
|
||
|
style={style}
|
||
|
src={url}
|
||
|
alt={description} >
|