budibase/packages/standard-components/src/Image.svelte

14 lines
290 B
Svelte
Raw Normal View History

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-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} />